1

我希望 onclick 方法与我的布局中的其他视图进行通信。尝试这样做时,我得到了 NullPointerException。我想我可能做错了。

我的getView方法如下:

    public View getView(int position, View convertView, ViewGroup parent) {
    View v = convertView;
    ViewHolder holder;
    final int p =position;
    if (v == null) {
       LayoutInflater vi = (LayoutInflater) _c.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
       v = vi.inflate(R.layout.menuitemrow, null);
       holder = new ViewHolder();
       holder.image = (ImageView) v.findViewById(R.id.MIR_itemImage);holder.image.setTag(position);
       holder.itemName = (TextView)v.findViewById(R.id.MIR_itemName);holder.itemName.setTag(position);
       holder.itemPrice = (TextView)v.findViewById(R.id.MIR_itemPrice);holder.itemPrice.setTag(position);
       holder.itemOther = (TextView)v.findViewById(R.id.MIR_itemOther);holder.itemOther.setTag(position);
       holder.details = (Button) v.findViewById(R.id.MIR_detailsbtn);holder.details.setTag(position);
       holder.qAdd = (Button) v.findViewById(R.id.MIR_qaddbtn);holder.qAdd.setTag(position);
       v.setTag(holder);
    } else 
        holder = (ViewHolder) v.getTag();
    MenuItemDetail mid = _data.get(position);
    holder.image.setImageResource(mid.icon);
    holder.itemName.setText(mid.itemName);
    holder.itemPrice.setText("Price: $"+mid.itemPrice);
    holder.itemOther.setText(mid.itemOther);
    //set click listeners
    holder.details.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            m =_data.get(p);
            s = m.getItemName();
            Toast.makeText(_c, "clicked details"+p+" "+s, Toast.LENGTH_SHORT).show();
        }
    });
    holder.qAdd.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            Toast.makeText(_c, "clicked quick add "+p, Toast.LENGTH_SHORT).show();
            TextView btnUpdate = (TextView) v.findViewById(R.id.CBV_textview2);
            //btnUpdate.setTag(1);
            //btnUpdate.setText(btnUpdate.getTag().toString());
            btnUpdate.setText("b");
        }
    });


    return v;
}

正如你所看到的,我只是为它分配了一个数字,getTag只是为了将它传递给setText方法。我已经尝试使用它来注释掉集合并获取,只使用String.

有问题的线是btnUpdate.setText("b");

有任何想法吗?

总结一下,我正在尝试从其客户适配器的方法访问TextView自定义Button内部的自定义。ListViewgetView

更新评论:

这是与其他按钮一起显示的自定义列表视图。ListView当单击以更新我创建的自定义按钮的文本视图时,我想要列表视图项(自定义的一部分),该按钮显示在与自定义列表视图相同的活动中。

布局如下:

<?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" >

<Button
    android:id="@+id/MI_backbutton"
    android:layout_width="fill_parent"
    android:layout_height="50dp"
    android:layout_weight="1"
    android:text="@string/back_list_categories"
    android:textSize="@dimen/FontSize8" />

<ListView
    android:id="@+id/menuList"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="20" >
</ListView>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:layout_gravity="bottom"
    android:layout_marginBottom="5dp"
    android:layout_weight="1" >

    <Button
        android:id="@+id/button2"
        style="@android:style/Widget.Button"
        android:layout_width="wrap_content"
        android:layout_height="50dp"
        android:layout_gravity="bottom"
        android:layout_weight="1"
        android:text="@string/generalbutton" />

    <include
        android:id="@+id/MI_checkorder"
        style="android:buttonStyle"
        android:layout_width="wrap_content"
        android:layout_height="50dp"
        android:layout_gravity="bottom"
        android:layout_marginTop="5dp"
        android:layout_weight="1"
        layout="@layout/custombtnview"
        android:background="@style/AppTheme"
        android:clickable="true"
        android:focusable="true" />

</LinearLayout>

在我引用获取 Textview 的视图中,textview 不存在。这种观点是MI_checkorder. 我在想也许这就是为什么我要NullPointerException为我的btnUpdate. textveiwCBV_textview2是我作为按钮(MI_checkorder)创建的视图的一部分。

我现在有了按钮,但无法在 UI 上显示更改。这是我添加的代码:

            public void onClick(View v) {
            Toast.makeText(_c, "clicked quick add "+p, Toast.LENGTH_SHORT).show();
            TextView btnUpdate = (TextView) inflateToEdit(_c, v).findViewById(R.id.CBV_textview2);
            //btnUpdate.setTag(1);
            //btnUpdate.setText(btnUpdate.getTag().toString());
            btnUpdate.setText("b");
        }

这是我在自定义适配器类中创建的方法。

    public View inflateToEdit(Context c, View view){
    View vw = view;
    LayoutInflater vi = (LayoutInflater) _c.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    return vi.inflate(R.layout.custombtnview, null);
}

它正在更新按钮的文本,但未在 UI 上显示。我不认为我可以从代码中的这一点更新 UI。我想我需要从活动中做到这一点。

4

1 回答 1

2

这是因为在视图上调用的findViewById会查找给定视图的子视图。

findViewById 文档

“查找具有给定 id 的子视图。如果此视图具有给定 id,则返回此视图。”

据我所知,CBV_textview2 包含在活动的布局中。因此,您可以做的是将活动传递给适配器的构造函数(我看到您已经有一个 _c 成员变量,我认为它是一个上下文,或者直接传递 CBV_textview2 本身(在包含的活动中调用 findViewById)。

在这两种情况下,您都需要调用活动的 findViewById,它“从 onCreate(Bundle) 中处理的 XML 中查找由 id 属性标识的视图”。

public class YourAdapter extends ArrayAdapter<String> {
  private final Context context;
  // blahblahblah
  private final TextView mYourTextView;

 public YourAdapter(Context context, String[] values, TextView btnUpdate) {
     super(context, R.layout.rowlayout, values);
     this.context = context;
     this.values = values;
     mYourTextView = btnUpdate;
 }

 ....

 @Override
    public void onClick(View v) {
        Toast.makeText(_c, "clicked quick add "+p, Toast.LENGTH_SHORT).show();
        //mYourTextView.setTag(1);
        //mYourTextView.setText(btnUpdate.getTag().toString());
        mYourTextView.setText("b");
    }

在您的活动中,您应该能够在调用构造函数之前获取 TextView。

于 2013-02-27T01:38:42.393 回答