web-dev-qa-db-ja.com

ListView-Itemsを強調表示する方法

次の問題が発生しました。

imageviewとtextviewで構成されるカスタム行を持つListViewがあります。 textviewのxmlコードは

<TextView xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:id="@+id/label"
    Android:layout_width="wrap_content"
    Android:layout_height="wrap_content"
    Android:textSize="26px"
    Android:layout_marginLeft="3px"
    Android:singleLine="true"
    Android:ellipsize="end"
    Android:textColorHighlight="#FEC403"
/>

次に、正常に機能するitemclicklistenerがあり、次の手順でクリックされたテキストビューを強調表示したいと思います。

public void onItemClick(AdapterView<?> adaptview, View clickedview, int position,
                long id) {
            //TODO: ACTIONS
            String pathtofile = (String) adaptview.getItemAtPosition(position);
            View rowview = (View) adaptview.getChildAt(position);
            rowview.setSelected(true);}

xmlでハイライトの色を「#FEC403」(つまり明るいオレンジ)にしたかったのですが、ハイライトの色はまだ灰色です。では、ハイライトカラーを正しく設定するにはどうすればよいですか?

前もって感謝します

編集:

これが私が最終的にそれをした方法です:

これは私のListViewItemxmlファイルです。

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:orientation="horizontal"
Android:layout_width="fill_parent"
Android:layout_height="wrap_content"
Android:background="@drawable/rowselector"
>

<ImageView xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:id="@+id/musicicon"
    Android:layout_width="wrap_content"
    Android:layout_height="fill_parent"
    Android:src="@drawable/musicicon"
    Android:paddingLeft="3px"
/>


<TextView xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:id="@+id/label"
    Android:layout_width="wrap_content"
    Android:layout_height="wrap_content"
    Android:textSize="26px"
    Android:layout_marginLeft="3px"
    Android:singleLine="true"
    Android:ellipsize="end"
    Android:focusable="false"
/>

およびrowselector.xml:

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

そしてついに私のOnItemClickは非常に短くなりました:

@Override
public void onItemClick(AdapterView<?> adaptview, View clickedview, int position,
                long id) {
            //TODO: ACTIONS
            clickedview.setSelected(true);
}
13
mad

Selectorを使用する必要があります。

This 質問とその答えが役立つかもしれません...

8
st0le
@Override
        public void onItemClick(AdapterView<?> parent, View view, int position, long arg3)
        {
            for(int a = 0; a < parent.getChildCount(); a++)
            {
                parent.getChildAt(a).setBackgroundColor(Color.BLACK);
            }

            view.setBackgroundColor(Color.RED);

        }
10
ununiform

あなたの活動では:

listview.setOnItemClickListener(new AdapterView.OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View view, int position, long itemid) {
            itemOnclickList(position, view);
        }
    });

    public void itemOnclickList(int position, View view) {      
    if (listview.isItemChecked(position)) {                           
       view.setBackgroundDrawable(getResources().getDrawable(R.drawable.image_checked));            
    } else {    
    view.setBackgroundDrawable(getResources().getDrawable(R.drawable.image_uncheck));           
    }
    adapter.notifyDataSetChanged();

}

アダプター内:

  public View getView(int position, View view, ViewGroup parent) {
    View convertView = inflater.inflate(R.layout.listdocument_item, null);      

        ListView lvDocument = (ListView) parent;
        if (lvDocument.isItemChecked(position)) {
            convertView.setBackgroundDrawable(activity.getResources().getDrawable(R.drawable.image_checked));               
        } else {
            convertView.setBackgroundDrawable(activity.getResources().getDrawable(R.drawable.image_uncheck));               
        }

    return convertView;
}

幸運を!

0
ngocquynh_183

セレクターを使用すると、次のようになります。

selector_listview_item.xmlという名前のドローアブル内に次のようなファイルを作成します(色を独自のものに変更します)。

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:Android="http://schemas.Android.com/apk/res/Android">
    <!-- pressed -->
    <item Android:drawable="@color/md_grey_200" Android:state_pressed="true" />
    <!-- default -->
    <item Android:drawable="@color/white" />
</selector>

リスト行を説明するレイアウト(例:layout_list_row.xml)で、ルートレイアウトにAndroid:background="@drawable/selector_listview_item"を追加すると、レイアウトは次のようになります。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:layout_width="match_parent"
    Android:layout_height="50dp"
    Android:background="@drawable/selector_listview_item" <!-- this is the important line -->
    Android:orientation="vertical">

    <!-- more stuff here -->
</LinearLayout>

(注:前述のように、リストビュー行内のアイテムにAndroid:focusable="false"を追加して、行をクリック可能にすることをお勧めします ここ

完了。

0
Mercury