Androidselect器和文字颜色

我想要一个简单的TextViewListView中按照simple_list_item_1的方式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

我做了几个testing,直到一个工作,所以:res / color / button_dark_text.xml

 <?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 /布局/ 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> 

select器也是这里的答案。

在源文件中searchbright_text_dark_focused.xml,将其添加到res / color目录下的项目中,然后从TextView中引用

 android:textColor="@color/bright_text_dark_focused" 

这是我的实现,其行为与列表中的项目(至less在2.3)

RES /布局/ 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> 

为了使它在列表视图中进行select,请使用以下代码:

 <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"状态。

这里是select器的例子。 如果你使用eclipse,当你点击ctrl和space时,它不会提示:/你必须input它。

 <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

之后我总是使用上面的解决scheme而不再search。 😉

但是,今天我遇到了一些东西,想到分享它。 🙂

这个特性实际上可以从API 1中获得,并且被称为ColorStateList ,我们可以在其中为Widgets的各种状态提供颜色(就像我们已经知道的那样)。

这里也有很好的文件。

如果在标签中使用TextViews这个select器定义为我工作(尝试克劳斯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> 

你有没有尝试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 } }); 

我希望这可以帮助或给你的想法。