Как изменить цвет элементов ListView в фокусе и при клике - PullRequest
27 голосов
/ 22 ноября 2010

У меня есть вид списка в моем приложении (это макет XML):

   <?xml version="1.0" encoding="utf-8"?>
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
       android:id="@+id/arrayList"
       android:layout_width="fill_parent"
android:layout_height="fill_parent"
       android:textFilterEnabled="true"
       android:scrollbars="vertical"
       android:drawSelectorOnTop="true">
</ListView>

Каждый элемент моего списка просмотра состоит из двух TextView:

    <?xml version="1.0" encoding="utf-8"?>
<TableLayout android:layout_width="fill_parent"
       xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/row_container"
       android:padding="5px" android:layout_height="wrap_content"
       android:background="@color/white" android:shrinkColumns="0">
               <TableRow>
               <TextView android:layout_height="wrap_content"
                       android:layout_width="wrap_content" android:layout_below="@+id/
description"
                       android:id="@+id/description"
                       android:textColor="@color/black"
                       android:scrollHorizontally="true"
                       android:singleLine="true"></TextView>
       </TableRow>
       <TableRow>
               <TextView android:layout_width="wrap_content"
                       android:layout_height="wrap_content" android:id="@+id/result"
                       android:textColor="@color/grey"
                       android:maxLines="1"
                       android:scrollHorizontally="true"></TextView>
       </TableRow>

</TableLayout>

Я заполняю свой listView из ArrayAdapter следующим образом:

public class Matches extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);        
    //set layout

    setContentView(R.layout.list_layout);
  // obtain reference to listview
  ListView listView = (ListView) findViewById(R.id.arrayList);

  ArrayAdapter<Match> arrayAdapter = new ArrayAdapter<Match>(
        this, R.layout.custom_row, R.id.description, createItems()) {

     @Override
     public View getView (int position, View convertView, ViewGroup parent){
        Match item = getItem (position);
        LayoutInflater inflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View rowView = inflater.inflate(R.layout.custom_row, null);
        TextView description = (TextView)rowView.findViewById(R.id.description);
        TextView result = (TextView)rowView.findViewById(R.id.result);
        description.setText(item.description + "  Risultato: " + item.result );
        result.setText(item.date + "  " + item.hour);
        return rowView;
     }
  };

  listView.setAdapter(arrayAdapter);

Моя цель состоит в том, чтобы иметь возможность изменять цвет текста и фоновый рисунок этих дочерних представлений при каждом выборе или нажатии родителя.

Как я могу это сделать?

Ответы [ 7 ]

37 голосов
/ 22 ноября 2010

Дочерние представления в строке списка должны рассматриваться как выбранные, если выбрана родительская строка, поэтому вы должны иметь возможность просто установить нормальное состояние drawable / color-list для представлений, которые вы хотите изменить, не требуя грязного кода Java , Смотрите этот ТАК пост .

В частности, вы должны установить textColor ваших textViews на ресурс XML, подобный этому:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_focused="true" android:drawable="@color/black" /> <!-- focused -->
    <item android:state_focused="true" android:state_pressed="true" android:drawable="@color/black" /> <!-- focused and pressed-->
    <item android:state_pressed="true" android:drawable="@color/green" /> <!-- pressed -->
    <item android:drawable="@color/black" /> <!-- default -->
</selector> 
32 голосов
/ 26 июня 2012

В вашем main.xml включите в ListView следующее:

android:drawSelectorOnTop="false"

android:listSelector="@android:color/darker_gray"
5 голосов
/ 05 января 2012
<selector xmlns:android="http://schemas.android.com/apk/res/android" >    
    <item android:state_pressed="true" android:drawable="@drawable/YOUR DRAWABLE XML" /> 
    <item android:drawable="@drawable/YOUR DRAWABLE XML" />
</selector>
4 голосов
/ 12 марта 2015

Вот хорошая статья о том, как использовать селекторы со списками.

Вместо того, чтобы установить в качестве фона android: ListView, я думаю, что вы хотите установить android: listSelector, как показано ниже:

<ListView android:id="@+id/list" 
  android:layout_width="fill_parent"
  android:layout_height="wrap_content" 
  android:layout_gravity="center"
  android:divider="@null" 
  android:dividerHeight="0dip"
  android:listSelector="@drawable/list_selector" />
1 голос
/ 22 июня 2016
listview.setOnItemLongClickListener(new OnItemLongClickListener() {

        @Override
        public boolean onItemLongClick(final AdapterView<?> parent, View view,
                final int position, long id) {
            // TODO Auto-generated method stub

             parent.getChildAt(position).setBackgroundColor(getResources().getColor(R.color.listlongclick_selection));

            return false;
        }
    });
0 голосов
/ 11 апреля 2018

Объявите компоненты элемента списка как окончательные за пределами вашего setOnClickListener или того, что вы хотите применить к вашему элементу списка, например:

final View yourView;
final TextView yourTextView;

И в переопределении onClick или любого другого метода, который вы используете, просто установите цвета, как это необходимо:

yourView.setBackgroundColor(Color.WHITE/*or whatever RGB suites good contrast*/);
yourTextView.setTextColor(Color.BLACK/*or whatever RGB suites good contrast*/);

Или без окончательного объявления, если, скажем, вы реализуете onClick () для настраиваемого адаптера для заполнения списка, это то, что я использовал в getView () для моего setOnClickListener / onClick ():

//reset color for all list items in case any item was previously selected
for(int i = 0; i < parent.getChildCount(); i++)
{
  parent.getChildAt(i).setBackgroundColor(Color.BLACK);
  TextView text=(TextView) parent.getChildAt(i).findViewById(R.id.item);
  text.setTextColor(Color.rgb(0,178,178));
}
//highlight currently selected item
 parent.getChildAt(position).setBackgroundColor(Color.rgb(0,178,178));
 TextView text=(TextView) parent.getChildAt(position).findViewById(R.id.item);
 text.setTextColor(Color.rgb(0,178,178));
0 голосов
/ 24 октября 2016

Очень старый, но я только что боролся с этим, вот как я решил это в чистом XML.В res / values ​​/ colors.xml я добавил три цвета ( color _... );

<resources>

    <color name="black_overlay">#66000000</color>

    <color name="colour_highlight_grey">#ff666666</color>
    <color name="colour_dark_blue">#ff000066</color>
    <color name="colour_dark_green">#ff006600</color>

</resources>

В res / drawable папка, которую я создал listview_colours.xml , которая содержала;

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@color/colour_highlight_grey" android:state_pressed="true"/>
    <item android:drawable="@color/colour_dark_blue" android:state_selected="true"/>
    <item android:drawable="@color/colour_dark_green" android:state_activated="true"/>
    <item android:drawable="@color/colour_dark_blue" android:state_focused="true"/>
</selector>

В main_activity.xml найдите представление списка и добавьте чертеж в listSelector;

<ListView
    android:id="@+id/menuList"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:listSelector="@drawable/listview_colours"
    android:background="#ff222222"/>
</LinearLayout>

Поиграйте с элементами _... в listview_colours.xml , чтобы получить нужный эффект.

Существует также метод, при котором вы можете установить стиль представления списка, но мне так и не удалось заставить его работать

...