1

我有这个:

在此处输入图像描述

其中红色方块是包含多个片段的活动,几乎所有片段都是列表,它们都有不同的项目,但由我的自定义 ListAdapter 类构建。

橙色方块就是那些碎片之一,实际上它是一个正确的抽屉。这个片段从 ListFragment 扩展而来,并膨胀了一个没有 Items 的简单 xml。

在片段内部,onActivityCreated我实例化了一个自定义 ListAdapter,我用您在屏幕截图中看到的项目填充它。

根据我想要的项目类型,我有几个 xml,在这里你可以看到其中 3 个:

  • 按钮标题(绿色方块)
  • 可勾选项目(右侧可以勾选的项目)
  • 常规标题(写着“Día y hora del viaje”的标题)

按钮标题(绿色方块)xml 是一个简单的线性布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/menu_row_title"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <ImageButton
        android:id="@+id/row_button"
        android:layout_width="45dp"
        android:layout_height="45dp"
        android:padding="10dp" />

    <TextView
        android:id="@+id/row_title"
        android:layout_width="0px"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="center_vertical"
        android:minLines="1"
        android:padding="10dp"
        android:textAppearance="@android:style/TextAppearance.Medium"
        android:textStyle="bold" />

</LinearLayout>

我想要做的是从橙色方块(我的自定义 ListFragment 类)访问按钮来设置点击监听器。我已经进行了研究,并且我知道我可以从适配器中做到这一点(我已经成功尝试过),但这就是我不想要的,因为在其他菜单中,我将有其他行为不同的按钮,但它们是将调用相同的侦听器,因为它们是由相同的适配器构建的。

我在给片段充气后尝试过:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View fragmentView = inflater.inflate(R.layout.menu_list, null); 
    //Button of location settings
    ((ImageButton)fragmentView.findViewById(R.id.row_button)).setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
                //Do here stuff I want to
        }
    }); 
    super.onStart();
    return fragmentView;
}

也来自onStart

@Override
public void onStart() {
    //Button of location settings
    ((ImageButton)getView().findViewById(R.id.row_button)).setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
                //Here my stuff
        }
    }); 
    super.onStart();
}

并且在之后setListAdapter()

@Override
public void onActivityCreated(Bundle savedInstanceState) {
    super.onActivityCreated(savedInstanceState);
    //A new instance of my own ListAdapter
    MyListAdapter adapter = new MyListAdapter(getActivity());
    //Prepare my items and its propierties within adapter
    //...
    //Set the Adapter
    setListAdapter(adapter);
    //And then try to get the Button view
    //Button of location settings
    ((ImageButton)getView().findViewById(R.id.row_button)).setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
            //My stuff here
        }
    }); 
}

但你猜怎么着......我总是在 xml 膨胀片段时遇到同样的错误。如果我删除设置点击侦听器的行,它可以工作,但显然按钮什么都不做。

任何帮助是极大的赞赏。

4

1 回答 1

1

以下是评论中的答案:

您的按钮位于 的一行中ListView,因此您只能从列表适配器 (in getView()) 中找到它。从您的片段调用findViewById()不能返回您的 ListView 中包含的视图。

一种解决方案是在为按钮充气时为其设置标签,然后在单击按钮时根据标签执行某些操作。

于 2013-07-29T18:37:13.307 回答