繁体   English   中英

可点击的列表视图

[英]Clickable ListView

我现在正在寻找几天以寻求ListView中可点击项的解决方案。

首先,我遇到了这个问题: developer.android.com/resources/articles/touch-mode.html ,发现它没有“正常”的onListItemClick()行为。

然后我遇到了这段代码http : //www.androidsnippets.org/snippets/125/

// LINE 296-321

    @Override  
    protected ViewHolder createHolder(View v) {  
        // createHolder will be called only as long, as the ListView is not filled  
        // entirely. That is, where we gain our performance:  
        // We use the relatively costly findViewById() methods and  
        // bind the view's reference to the holder objects.  
        TextView text = (TextView) v.findViewById(R.id.listitem_text);  
        ImageView icon = (ImageView) v.findViewById(R.id.listitem_icon);  
        ViewHolder mvh = new MyViewHolder(text, icon);  

        // Additionally, we make some icons clickable  
        // Mind, that item becomes clickable, when adding a click listener (see API)  
        // so, it is not necessary to use the android:clickable attribute in XML  
        icon.setOnClickListener(new ClickableListAdapter.OnClickListener(mvh) {  

            public void onClick(View v, ViewHolder viewHolder) {  
                // we toggle the enabled state and also switch the icon  
                MyViewHolder mvh = (MyViewHolder) viewHolder;  
                MyData mo = (MyData) mvh.data;  
                mo.enable = !mo.enable; // toggle  
                ImageView icon = (ImageView) v;  
                icon.setImageBitmap(  
                        mo.enable ? ClickableListItemActivity.this.mIconEnabled  
                                : ClickableListItemActivity.this.mIconDisabled);  
            }  
        });  

在调试时,我注意到参数View vTextView而不是“普通”视图,然后当然:

TextView text = (TextView) v.findViewById(R.id.listitem_text);

返回null ,我得到一个NullPointerException ...

有什么想法吗? 我该如何解决呢?

提前致谢! :)

如何创建ClickableListAdapter实例?

创建列表适配器时,必须传递资源ID viewId ,这应该是一个layout ,稍后将进行夸大。

public ClickableListAdapter(Context context, int viewid, List objects) {  

        // Cache the LayoutInflate to avoid asking for a new one each time.  
        mInflater = LayoutInflater.from(context);  
        mDataObjects = objects;  
        mViewId = viewid;

下面,代码对传递给构造函数的xml布局进行膨胀,并调用createHolder

view = mInflater.inflate(mViewId, null);  
// call the user's implementation  
holder = createHolder(view); 

因此,请确保在实例化ClickableListAdapter ,传递layout而不是id

编辑您必须使用以下内容创建一个xml布局,该布局取自提供的链接:

<?xml version="1.0" encoding="utf-8"?>  
<LinearLayout  
  xmlns:android="http://schemas.android.com/apk/res/android"  
  android:layout_width="fill_parent"  
  android:layout_height="wrap_content"  
  android:orientation="horizontal"  
  android:gravity="center_vertical"  
  >  

<TextView android:text="Text" android:id="@+id/listitem_text"  
            android:layout_weight="1"   
            android:layout_width="fill_parent"   
            android:layout_height="wrap_content"  
            ></TextView>  
<ImageView android:id="@+id/listitem_icon"  
            android:src="@drawable/globe2_32x32"  
            android:layout_width="wrap_content"   
            android:layout_height="wrap_content"  
            android:maxWidth="32px"  
            android:maxHeight="32px"  
            >  
</ImageView>  
</LinearLayout>

如果在布局目录mylistrow.xmlmylistrow.xml ,则将适配器构造为:

adapter = new MyClickableChannelListAdapter(this, R.layout.mylistrow, channelList); 
setListAdapter(adapter);

列表项应立即可用。 您可以通过查看ApiDemos项目代码来检查列表的编码方式。 它应该存在于您的本地计算机上,因为它是SDK的一部分。 我在<root_sdk_folder>\\platforms\\android-2.0.1\\samples\\ApiDemos

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM