2

在我的 Android 项目中,我需要通过标签而不是 ID 在我的 Activity 中查找视图。(如果你问我为什么不简单地使用findViewById,这不是我的偏好,而且描述起来很复杂,但目前我不能依赖R.id.常量!) 到目前为止,为了在我的代码中找到视图,我已经设法使用这成功:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.index);
    mainViewGroup = (ViewGroup)getWindow().getDecorView();
    TextView indexCaption = (TextView) mainViewGroup.findViewWithTag("index_caption");
    // Now I have my TextView and can use it without problem
}

但现在,问题是我在同一个活动中的自定义 ArrayAdapter:

    class IconicAdapter extends ArrayAdapter<String> {
    IconicAdapter() {
                    // How I can use Tag instead of R.layout.index_row_caption here?!!!
        super(IndexActivity.this, R.layout.index_row, R.id.index_row_caption, arrayList);
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View row = super.getView(position, convertView, parent);
                    // Some customizations...
        return (row);
    }
}

index_row.xml对于那个 IconicAdapter :

android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/content_bg" >

<TextView
    android:id="@+id/index_row_caption"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_centerVertical="true"
    android:layout_toLeftOf="@+id/index_row_icon"
    android:layout_toRightOf="@+id/index_row_search"
    android:gravity="right"
    android:tag="index_row_caption"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<ImageView
    android:id="@+id/index_row_icon"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:tag="index_row_icon" />

<ImageView
    android:id="@+id/index_row_search"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_centerVertical="true"
    android:src="@drawable/index_row_search"
    android:tag="index_row_search" />

如何避免R.id.index_row_caption在构造函数中使用并将其替换为与其标签相关的内容?

编辑:最后,我已经完成了这段代码,并且效果很好:(在这方面帮助我的 pawelzieba 获得了学分和赏金)

    class IconicAdapter extends ArrayAdapter<String> {
    IconicAdapter() {
        super(IndexActivity.this, R.layout.index_row, 0, arrayList);
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {

        View view;
        if (convertView == null) {
            LayoutInflater mInflater = IndexActivity.this.getLayoutInflater();
            view = mInflater.inflate(R.layout.index_row, parent, false);
        } else {
            view = convertView;
        }

        //find views
        TextView text = (TextView) view.findViewWithTag("index_row_caption");

        //fill views with data
        text.setText(arrayList.get(position));          

        return view;
    }
}
4

3 回答 3

2

扩展ArrayAdapter和覆盖getView()方法。

public View getView(int position, View convertView, ViewGroup parent) {
    View view;

    if (convertView == null) {
        view = mInflater.inflate(R.layout.index_row, parent, false);
    } else {
        view = convertView;
    }

    //find views
    TextView text = (TextView) view.findViewWithTag("index_row_caption");

    //fill views with data
    //example:
    T item = getItem(position);
    text.setText(item.toString());


    return view;
}

然后传递给构造函数的行资源 id 未被使用。

为了获得更好的性能,使用 View Holder Pattern 在创建行的视图上只调用一次 findViewWithTag:http ://www.vogella.com/articles/AndroidListView/article.html#adapterperformance_hoder

于 2012-09-08T15:10:39.947 回答
1

如果要将 R.id 值用作常量,可以在 public.xml 中声明它们。资源 ID 在构建中将保持不变。因此,您不必仅仅因为需要常量 id 而使用标签。

检查这个帖子

于 2012-09-08T19:47:49.697 回答
0

您可以通过以下方式执行此操作:

android:tag="someTag"属性添加到您viewxml布局文件中。

要访问该视图,只需使用:

findViewByTag(); method

通过这种方式,您可以通过标签而不是 id 访问您的视图。

于 2012-09-03T09:38:33.600 回答