0

我正在考虑为已经有文本和复选框的 ListView 中的项目添加一个图标:simple_list_item_multiple_choice.xml 只不过是一个带有一些属性的 < CheckedTextView > 标记

我知道自定义适配器解决方案,但我真的想要更直观的解决方案。我知道使用源代码并不直观,但我的意思是这样做很容易:

SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, // context
                android.R.layout.simple_list_item_multiple_choice,  // view for an item in the list
                myCursor,                                           // cursor used for populating list items
                new String[] {dBHelper.CONTACT_NAME},               // column in cursor we are getting data from
                new int[] {android.R.id.text1});                    // where to put this data in the item's view

并且可以通过以下方式获取结果:

SparseBooleanArray checkedPositions = lv.getCheckedItemPositions();

使用单独文件中编写的任何代码


使用来自: http ://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.3.3_r1/android/widget/CheckedTextView.java/的源代码

我的问题是eclipse无法解决: R.styleable.CheckedTextViewmPaddingRight 在:

TypedArray a = context.obtainStyledAttributes(attrs,
                R.styleable.CheckedTextView, defStyle, 0);

Drawable d = a.getDrawable(R.styleable.CheckedTextView_checkMark);

boolean checked = a.getBoolean(R.styleable.CheckedTextView_checked, false);

mPaddingRight = mCheckMarkWidth + mBasePaddingRight;
            d.setState(getDrawableState());
        } else {
            mPaddingRight = mBasePaddingRight;
        }

@Override
    public void setPadding(int left, int top, int right, int bottom) {
        super.setPadding(left, top, right, bottom);
        mBasePaddingRight = mPaddingRight;
    }

谢谢... :)

4

1 回答 1

1

正如上面评论中提到的,如果您只想向 ListView 项目添加一个图标,则不需要去源代码。只需创建一个描述您想要的新布局。我在下面提供了一个示例,但这只是一种方法。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="?android:attr/listPreferredItemHeight"
    android:paddingLeft="6dp"
    android:paddingRight="6dp">

    <ImageView
        android:id="@+id/icon1"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:src="@drawable/ic_launcher" />

    <CheckedTextView
        android:id="@android:id/text1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:gravity="center_vertical"
        android:checkMark="?android:attr/listChoiceIndicatorMultiple"
        android:layout_toRightOf="@id/icon1"
    />
</RelativeLayout>

然后,在您的活动代码中执行以下操作:

ListView listView = (ListView) findViewById(R.id.listView1);
// I'm just going to use an ArraySdapter, for simplicity...

listView.setAdapter(new ArrayAdapter<String>(this, R.layout.item, android.R.id.text1, getResources().getStringArray(R.array.items)));

// or, for the sake of example (note, not optimized at all)

listView.setAdapter(new ArrayAdapter<String>(this, R.layout.item, android.R.id.text1, getResources().getStringArray(R.array.items)) {
    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View view = super.getView(position, convertView, parent);
        if (position % 2 == 0) {
            ((ImageView) view.findViewById(R.id.icon1)).setImageResource(R.drawable.ic_launcher);
        } else {
            ((ImageView) view.findViewById(R.id.icon1)).setImageResource(R.drawable.ic_launcher);
        }
        return view;
    }
});

注意,上面提供了更多的灵活性,但您也可以只向 CheckedTextView 添加一个 android:drawableLeft 属性,而不是添加 RelativeLayout 和 ImageView。

于 2012-07-30T15:10:03.430 回答