1

リスト ビューで選択した複数のアイテム (テキスト ビュー) の色を変更する必要があります。ここで行っているのは、ユーザーがリスト ビューから項目を選択すると、色が青に変更され、ユーザーが項目の選択を解除すると、色がデフォルトの色 (ここでは黒) に変更されることです。私はいくつかのチュートリアルを経て、1 つの小さなデモを実装しました。しかし、色の変化に対処する方法がわかりません。以下は私のコードです...

activity_main.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">

    <ListView
        android:layout_height="wrap_content"
        android:id="@+id/listView2"
        android:layout_width="match_parent">
    </ListView>
</LinearLayout>

listitem.xml

<?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="match_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="TextView"
        android:textAppearance="?android:attr/textAppearanceLarge" />

</LinearLayout>

MainActivity.java

public class MainActivity extends Activity
{
    /** Called when the activity is first created. */
    public View row;
    ListView lview;
    ListViewAdapter lviewAdapter;

    private final static String month[] = {"January","February","March","April","May",
        "June","July","August","September","October","November","December"};



    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        lview = (ListView) findViewById(R.id.listView2);
        lviewAdapter = new ListViewAdapter(this, month);

        lview.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
        lview.setAdapter(lviewAdapter);

        lview.setOnItemClickListener(new OnItemClickListener() {

            @Override
            public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
                    long arg3) {
                // TODO Auto-generated method stub

            }
        });
    }




}

ListViewAdapter.java

public class ListViewAdapter extends BaseAdapter
{
    ArrayList<Boolean> saved = new ArrayList<Boolean>();
    Activity context;
    String title[];
    String description[];

    public ListViewAdapter(Activity context, String[] title) {
        super();
        this.context = context;
        this.title = title;

    }

    public int getCount() {
        // TODO Auto-generated method stub
        return title.length;
    }

    public Object getItem(int position) {
        // TODO Auto-generated method stub
        return null;
    }

    public long getItemId(int position) {
        // TODO Auto-generated method stub
        return 0;
    }

    private class ViewHolder {
        TextView txtViewTitle;

    }




    public View getView(int position, View convertView, ViewGroup parent)
    {
        // TODO Auto-generated method stub
        ViewHolder holder;
        LayoutInflater inflater =  context.getLayoutInflater();

        if (convertView == null)
        {
            convertView = inflater.inflate(R.layout.listitem_row, null);
            holder = new ViewHolder();
            holder.txtViewTitle = (TextView) convertView.findViewById(R.id.textView1);

            convertView.setTag(holder);


        }
        else
        {
            holder = (ViewHolder) convertView.getTag();
        }

        holder.txtViewTitle.setText(title[position]);


    return convertView;
    }

}
4

5 に答える 5

1
lview.setOnItemClickListener(new OnItemClickListener() {

            @Override
            public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
                    long arg3) {

                 TextView textView1 = (TextView) arg1.findViewById(R.id.textView1);
                   if(lv.isItemChecked(arg2))
                         textView1.setTextColor(your selected state color);
                   else
                       textView1.setTextColor(your unselected state color);

            }
        });
于 2013-08-13T05:02:27.083 に答える
1

以下のように res/drawable 内に selector.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="#fff"/>
    <item android:state_enabled="false" android:color="#cc003300"/>
    <item android:color="#cc003300"></item>

</selector>

次に、それをxmlのテキストビューに割り当てます。

 android:textColor="@drawable/selector_btn_textcolor_green"

コードを次のように更新します

<TextView
        android:id="@+id/textView1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="TextView"
        android:textColor="@drawable/selector_btn_textcolor_green"
        android:textAppearance="?android:attr/textAppearanceLarge" />
于 2013-08-13T05:03:08.083 に答える
0

新しいレイアウト xml ファイルを作成し、外部ライブラリの simple_list_item_1.xml からコード全体をコピーしてから、必要に応じて変更します。

custom_text.xml

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#1ca099"
android:textSize="20dp"
android:padding="5dp"
android:gravity="center_vertical"
 />

次に、 activity.java ファイルで次のようにします。

 ListView lst=(ListView) findViewById(R.id.listView);
     ArrayAdapter<String> adapter=new ArrayAdapter<String>(getApplicationContext(),R.layout.custom_text,cultural);
        lst.setAdapter(adapter);
于 2015-02-17T11:06:00.617 に答える
0

listitem の場合、drawable フォルダーに保持できる xml リソースとして drawable を保持できます。押された、フォーカスされた、通常の状態を明示的に異なる色に処理できるという点で。

于 2013-08-13T05:00:32.653 に答える