A Font Awesome library for Android.
Gradle:
dependencies {
compile 'com.eqot:font-awesome-android:0.1.0'
}
Maven:
<dependency>
<groupId>com.eqot</groupId>
<artifactId>font-awesome-android</artifactId>
<version>0.1.0</version>
<type>pom</type>
</dependency>
You can define strings with Font Awesome icons in strings.xml
with icons IDs (like fa-smile-o
) in the cheatsheet.
<resources>
<string name="label1">This is an example {fa-smile-o} {fa-thumbs-o-up}</string>
<string name="label2">{fa-font-awesome} Font Awesome</string>
</resources>
The strings can be utilized in the usual style.
<LinearLayout
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/label1"/>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/label2"/>
</LinearLayout>
FontAwesome#applyToAllViews() will replace icon IDs with unicode strings and set a proper font.
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
FontAwesome.applyToAllViews(this, findViewById(R.id.activity_main));
}
}
Copyright 2016 Ikuo Terado
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.