我正在制作一个聊天应用程序我使用参考font awesome的图标字体,我已经将ttf文件保存到我的项目资产文件夹中,之后我通过设置字体访问图标,问题是我想要改变图标字体的大小,颜色。请帮助我
<TextView
android:id="@+id/landing_drawer_image"
android:layout_width="@dimen/width_40"
android:layout_height="@dimen/height_40"
android:layout_marginLeft="@dimen/margin_15"
android:textColor="@color/grey_black_1000"
android:gravity="center_vertical"
android:text="Drawable"
/>
viewHolder.drawerItemImage.setText("A");
答案 0 :(得分:3)
试试这个
Typeface font = Typeface.createFromAsset(getAssets(),
"fontawesome-webfont.ttf");
gmail_icon.setTypeface(font);
gmail_icon.setTextColor(getResources().getColor(R.color.white));
答案 1 :(得分:2)
你可以试试这个:
在colors.xml中设置颜色:
<color name="test">#0f0f0f</color>
在XML中执行以下操作:
<TextView
android:id="@+id/landing_drawer_image"
android:layout_width="@dimen/width_40"
android:layout_height="@dimen/height_40"
android:layout_marginLeft="@dimen/margin_15"
android:textColor="@color/test"
android:gravity="center_vertical"
android:text="Drawable"
/>
要设置TypeFace
,您可以通过两种方式完成
1 .-
Typeface font = Typeface.createFromAsset(
getContext().getAssets(),
"fonts/YourTypeFace.ttf");
YourTextView.setTypeface(font);
2.- android:typeface="YOURTTF"
设置您必须在xml文件中添加的TextSize
android:textSize="@dimen/font_size"/>
试试这个,如果您有任何问题请告诉我,希望我的回答能帮助您:)