gpt4 book ai didi

android - 如何在 XML 选择器中使用字体图标 (font-awesome)

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:49:41 24 4
gpt4 key购买 nike

是否可以在选择器中使用字体图标而不是可绘制的图标?

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:drawable="@drawable/menu_home_press" android:state_pressed="true"></item>
<item android:drawable="@drawable/menu_home"></item>
</selector>

最佳答案

我更改了选择器中的文本颜色而不是可绘制的。它工作正常。

创建扩展 TextView 的 MyTextView 类

public class MyTextView extends TextView {

public MyTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init(context);
}

public MyTextView(Context context, AttributeSet attrs) {
super(context, attrs);
init(context);
}

public MyTextView(Context context) {
super(context);
init(context);
}

private void init(Context context) {
Typeface tf = Typeface.createFromAsset(context.getAssets(),
"fontawesome-webfont.ttf");
setTypeface(tf);
}
}

创建 text_color_selector.xml 选择器

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="#ff0000" android:state_pressed="true" />
<!-- pressed -->
<item android:color="#ff0000" android:state_focused="true" />
<!-- focused -->
<item android:color="#000000" />
<!-- default -->
</selector>

然后在你的布局中使用它

 <com.example.mohsin.myapplication.MyTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="50sp"
android:clickable="true"
android:textColor="@drawable/text_color_selector"
android:text="\uF242">

</com.example.mohsin.myapplication.MyTextView>

关于android - 如何在 XML 选择器中使用字体图标 (font-awesome),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35271608/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com