Android选择器&文本颜色

我想让一个简单的TextViewListView中的simple_list_item_1那样工作。这是XML文件:

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content" android:layout_width="fill_parent"
android:gravity="center" android:focusable="true"
android:minHeight="?android:attr/listPreferredItemHeight"
android:textAppearance="?android:attr/textAppearanceLarge"
android:background="@android:drawable/list_selector_background" />

除了文本颜色在聚焦状态下没有改变外,其他一切都正常。如何将其更改为textAppearanceLargeInverse?

292479 次浏览

你试过setOnFocusChangeListener吗?在处理程序中,您可以更改文本外观。

例如:

TextView text = (TextView)findViewById(R.id.text);
text.setOnFocusChangeListener(new View.OnFocusChangeListener() {
public void onFocusChange(View v, boolean hasFocus) {
if (hasFocus) {
((TextView)v).setXXXX();
} else {
((TextView)v).setXXXX();
}
}
});

然后,您可以应用您想要的任何更改,无论它是否集中。你也可以使用ViewTreeObserver来监听全局焦点的变化。

例如:

View all = findViewById(R.id.id_of_top_level_view_on_layout);
ViewTreeObserver vto = all.getViewTreeObserver();
vto.addOnGlobalFocusChangeListener(new ViewTreeObserver.OnGlobalFocusChangeListener() {
public void onGlobalFocusChanged(
View oldFocus, View newFocus) {
// xxxx
}
});

我希望这能给你们一些启发。

selector也是这里的答案。

在源代码中搜索bright_text_dark_focused.xml,添加到res/color目录下的项目,然后从TextView引用为

android:textColor="@color/bright_text_dark_focused"
我做了几次测试,直到一个成功,所以: res /颜色/ button_dark_text.xml < / p >
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"
android:color="#000000" /> <!-- pressed -->
<item android:state_focused="true"
android:color="#000000" /> <!-- focused -->
<item android:color="#FFFFFF" /> <!-- default -->
</selector>

res / layout / view.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="EXIT"
android:textColor="@color/button_dark_text" />
</LinearLayout>

下面是我的实现,它的行为与list中的item完全相同(至少在2.3上)

res / layout / list_video_footer.xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >


<TextView
android:id="@+id/list_video_footer"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:drawable/list_selector_background"
android:clickable="true"
android:gravity="center"
android:minHeight="98px"
android:text="@string/more"
android:textColor="@color/bright_text_dark_focused"
android:textSize="18dp"
android:textStyle="bold" />


</FrameLayout>

res /颜色/ bright_text_dark_focused.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">


<item android:state_selected="true" android:color="#444"/>
<item android:state_focused="true" android:color="#444"/>
<item android:state_pressed="true" android:color="#444"/>
<item android:color="#ccc"/>


</selector>

下面是选择器的例子。如果你使用eclipse,当你点击ctrl和空格:/时,它不会提示什么,你必须输入它。

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/btn_default_pressed" android:state_pressed="true" />
<item android:drawable="@drawable/btn_default_selected"
android:state_focused="true"
android:state_enabled="true"
android:state_window_focused="true"  />
<item android:drawable="@drawable/btn_default_normal" />

你可以参考一下;

http://developer.android.com/guide/topics/resources/drawable-resource.html#StateList

我总是使用上面的解决方案,在此之后没有搜索更多。;-)

然而,今天我偶然发现了一些东西,想分享给大家。:)

这个特性确实可以从API 1中获得,并被称为ColorStateList,在那里我们可以为widget的各种状态提供颜色(正如我们已经知道的那样)。

它也有很好的文档,在这里。

如果在选项卡中使用TextViews,这个选择器定义对我有用(尝试了Klaus Balduino的,但它没有):

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">


<!--  Active tab -->
<item
android:state_selected="true"
android:state_focused="false"
android:state_pressed="false"
android:color="#000000" />


<!--  Inactive tab -->
<item
android:state_selected="false"
android:state_focused="false"
android:state_pressed="false"
android:color="#FFFFFF" />


</selector>

为了让它在列表视图中选择工作,请使用以下代码:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:color="#fff"/>
<item android:state_activated="true" android:color="#fff"/>
<item android:color="#000" />
</selector>

显然,键是state_activated="true"状态。

res/color中放置一个文件"text_selector.xml":

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="@color/blue" android:state_focused="true" />
<item android:color="@color/blue" android:state_selected="true" />
<item android:color="@color/green" />
</selector>

然后在TextView中使用它:

<TextView
android:id="@+id/value_1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Text"
android:textColor="@color/text_selector"
android:textSize="15sp"
/>

在代码中,你需要设置一个点击监听器。

private var isPressed = false


private fun TextView.setListener() {
this.setOnClickListener { v ->
run {
if (isPressed) {
v.isSelected = false
v.clearFocus()
} else {
v.isSelected = true
v.requestFocus()
}
isPressed = !isPressed
}
}
}


override fun onResume() {
super.onResume()
textView.setListener()
}


override fun onPause() {
textView.setOnClickListener(null)
super.onPause()
}

抱歉,如果有错误,我在发布之前更改了一个代码,没有检查。