«android-selector» 태그된 질문

5
안드로이드 사용자 정의 버튼; 텍스트 색상 변경
다음과 같이 다른 상태에서 배경 드로어 블을 변경하는 버튼을 만들었습니다. <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="true" android:drawable="@drawable/btn_location_pressed" /> <!-- pressed --> <item android:state_focused="true" android:drawable="@drawable/btn_location_pressed"/> <!-- focused --> <item android:drawable="@drawable/btn_location"/> <!-- default --> 여기서 문제는 드로어 블과 마찬가지로 textColor를 변경하려고하지만 할 수 없다는 것입니다. 이미 android : textColor 및 android : color를 시도했지만 …

9
안드로이드 선택기 및 텍스트 색상
나는 간단한 원하는 TextView방식으로 행동 simple_list_item_1A가에 ListView않습니다. 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어떻게합니까?
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.