안드로이드 선택기 및 텍스트 색상


184

나는 간단한 원하는 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어떻게합니까?


누구나 XML 파일을 찾고 있다면 여기에 있습니다. developer.android.com/resources/samples/Home/res/color/…
swinefeaster

답변:


403

하나가 작동 할 때까지 여러 테스트를 수행 했으므로 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 / 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>

8
android : drawable없이 앱이 선택기 xml과 충돌 함
neufuture

4
@neufuture : 당신은 사용해야합니다android:textColor="@color/button_dark_text"
Paul

3
색상 상태 목록을 설명하는 문서가 있습니다. developer.android.com/guide/topics/resources/…
Rick77 2012

호기심으로 텍스트, 버튼 또는 항목이 활성화 된 경우 (예 : 목록 항목)에도 작동합니다. <item android : state_activated = "true"android : color = "@ android : color / white"/>
jiahao 2016 년

선택기가 실제로 res/color폴더 아래에 있어야합니까?
mr5

79

그리고 셀렉터도 여기에 답입니다.

소스에서 bright_text_dark_focused.xml을 검색하고 res / color 디렉토리 아래 프로젝트에 추가 한 다음 TextView에서

android:textColor="@color/bright_text_dark_focused"

5
이것이 "primary_text_dark_focused.xml"로 변경되었다고 생각합니다.
greg7gkb

11
이것은 단지 내 마음을 날려 버렸다. 나는 항상 텍스트 색상을 변경하기 위해 리스너로 일을 처리해 왔습니다. 바닥에 턱. 훌륭한!
Artem Russakovskii 1

선택기가 textColor에도 매우 효과적이라고 생각하지 않았습니다.
Drejc

내가 만든보기의 루트 레이아웃으로 이것을 시도 ListFragment하고 많은 오류가 발생했습니다 . 내가 뭘 잘못하고 있죠?
MowDownJoe

@android : color / white를 사용할 수 없습니다. Ctrl + space를 누르면 컨텐츠 지원을 표시 할 수 없습니다
LOG_TAG

31

다음은 목록의 항목으로 정확히 작동하는 구현입니다 (적어도 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>

입술 / 색상 /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>

이것은 나를 위해 잘 작동하고, 내 경우에는 내 TabHost 구현에 강조 표시된 / 강조 표시되지 않은 색상을 조정하기위한 아주 잘 작동
oddmeter

27

목록보기에서 선택 작업을 수행하려면 다음 코드를 사용하십시오.

<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"상태입니다.


17
res / color 폴더에이 파일을 저장하는 것을 잊지 마십시오
Nguyen Minh Binh

4

다음은 선택기의 예입니다. 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


2

나는이 후에 더 이상 검색하지 않고 항상 위의 솔루션을 사용했습니다. ;-)

그러나 오늘 나는 무언가를 발견하고 그것을 공유 할 생각을했습니다. :)

이 기능은 실제로 API 1에서 사용할 수 있으며 ColorStateList 라고하며 , 여기에서 우리가 이미 알고있는 다양한 상태의 위젯에 색상을 제공 할 수 있습니다.

또한 여기에 매우 잘 문서화되어 있습니다.


2

에서 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()
}

오류가 발생하여 죄송합니다. 게시하기 전에 코드를 변경했지만 확인하지 않았습니다.


1

탭에서 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>

0

당신은 시도 했습니까 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
    }
});

이것이 도움이되거나 아이디어를주기를 바랍니다.


1
처음에는이 방법을 사용했지만 어떤 이유로 텍스트 색상이 변경되지 않았습니다.
yanchenko
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.