如何突出在安卓选中的列表项?(How to highlight selected list item

2019-10-17 15:53发布

在我的Android应用程序,我对每个列表项列表视图和详细视图。 对于片剂我已示出的项目的列表视图和所选项目的详细视图如下。

所以我的问题是我怎么能高亮显示所选项目用户点击列表项之后。

我使用的是BaseAdapter我view.How可以做到这一点任何想法来加载列表?

编辑:

由于是chintan khetiya提到我用下面的XML文件的列表项的背景,但它不会高兴选定的项目。 什么我错过了?

    <?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item 
 android:state_selected="false"
    android:state_pressed="false" 
    android:drawable="@color/abs__background_holo_light" />
<item android:state_pressed="true" 
    android:drawable="@color/action_bar_blue" />
<item android:state_selected="true"
 android:state_pressed="false" 
    android:drawable="@color/action_bar_blue" />
</selector>

Answer 1:

您的查询 :

我的问题是我怎么能高亮显示所选项目用户点击列表项之后。

我想你问的选择。 意思是,如果在对焦状态列表行那么就应该看不同形式的所有其他行。 当您按下或触摸行同样的事情。

对于你必须做出Selector.xml文件中可绘制文件夹,只是把该选择文件在列表中排

这个文件应该有这样不同的标签Focus-Click-Press并更改绘制对象按状态。

更新:

只需更换您的图标并保存在文件夹中可绘制。

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

    <!-- Pressed -->
    <item android:drawable="@drawable/p_paly_press" android:state_pressed="true"/>

    <!-- selected -->
    <item android:drawable="@drawable/p_play" android:state_selected="true"/>

    <!-- focused -->
    <item android:drawable="@drawable/p_paly_press" android:state_focused="true"/>

    <!-- default -->
    <item android:drawable="@drawable/p_play"/>

</selector>


Answer 2:

类似下面的下面的代码的代码可以用来突出肯定选择的项目,如果其他方面不这样做,你需要:

class Adapter extends ArrayAdapter<String> {

    private int selectedPos = -1;
    Drawable selectedBackground;

    public MainSelectAdapter(Context context, int textViewResourceId,
            List<String> objects) {
        super(context, textViewResourceId, objects);
        selectedBackground =
              context.getResources().getDrawable(R.color.selecteditembackground);
    }
    public void setSelectedPosition(int pos){
        selectedPos = pos;
        notifyDataSetChanged();
    }
    public View getView(int position, View convertView, ViewGroup parent) {
        View v = super.getView(position, convertView, parent);
        if (selectedPos == position) {
            v.setBackgroundDrawable(selectedBackground);
        } else {
            v.setBackgroundDrawable(null);
        }
        return v;
    }
}

而在主要活动

  Adapter adapter = new Adapter(this, android.R.layout.simple_list_item_1,
    myItemsToShow);

  list = (ListView) findViewById(R.id.flows);
  list.setItemsCanFocus(true);
  list.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
  list.setOnItemClickListener(new AdapterView.OnItemClickListener() {
    public void onItemClick(AdapterView<?> adapter, View view,
                int pos, long id) {
                adapter.setSelectedPosition(pos);
    }
  });

通过这种方法,你对所选定的项目突出了自己的控制,你有一个监听器来捕获选择事件并设置自己所需要的绘制对象。



Answer 3:

您可以在styles.xml定义

    <style name="Theme.Base" parent="...">
        <item name="activatableItemBackground">@drawable/activatable_item_background</item>
    </style>

   <style name="ListItemContainerBase">
        <item name="android:background">?activatableItemBackground</item>
    </style>

在res /抽拉限定activatable_item_background.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/item_pressed" android:state_pressed="true" />
    <item android:drawable="@drawable/item_focused" android:state_focused="true" />
    <item android:drawable="@drawable/item_focused" android:state_selected="true" />
    <item android:drawable="@drawable/item_activated" android:state_activated="true" />
    <item android:drawable="@drawable/item_checked" android:state_checked="true" />
    <item android:drawable="@android:color/transparent" />
</selector>

item_pressed,item_focused .....在水库图像/绘制-XXX

定义在你看来这样的布局中的每个项目:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    style="@style/ListItemContainerBase">


文章来源: How to highlight selected list item in android?