我正在使用带有自定义列表项(包括按钮)的ListView。我有一个自定义适配器,在其中我将按钮的OnClickListener设置为内部类(在适配器类中定义)。
我想访问类中的按钮(在ListAcitivty类的不同xml文件中定义),其中显示了listview。我想在这个类中设置它的onClickListener方法。这样做的最佳方法是什么?
编辑: 这是我的list_item.xml(我用于我的ListView行)。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/imageView"
android:layout_width="22dp"
android:layout_height="wrap_content"
android:layout_marginLeft="4dp"
android:layout_marginRight="10dp"
android:layout_marginTop="4dp"
android:contentDescription="Color"
android:src="@drawable/ic_launcher" >
</ImageView>
<EditText
android:id="@+id/nameEdit"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:textSize="20dp"
android:inputType="textPersonName"
>
</EditText>
<Button
android:id="@+id/deleleButton"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="@drawable/delete_button" >
</Button>
</LinearLayout>
如何访问扩展ListActivity的类中的按钮(id:deleteButton)?扩展listactivity的类有一个单独的布局(例如main.xml)。如果我在扩展listactivity的类中执行setContentView(main),则findViewById(R.id.deleteButton)将返回null。
编辑2: 这是我扩展ListActivity的类。如果我在setContentView之后放置findViewById(R.id.deleteButton),它将返回null。
public class PlayerSelection extends ListActivity {
ListView list;
ArrayList<PlayerField> textviews = null;
PlayerFieldsAdapter adapter = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.player_selection_page);
list = getListView();
textviews = new ArrayList<PlayerField>();
for (int i = 0; i< GlobalVariables.getPlayers(); i++) {
textviews.add(i, new PlayerField());
}
adapter = new PlayerFieldsAdapter(this, R.layout.list_item, textviews);
ViewGroup header = (ViewGroup) getLayoutInflater().inflate(R.layout.list_header, null);
Button backButton = null;
for (int i = 0; i < header.getChildCount(); i++) {
View v = header.getChildAt(i);
if (v instanceof Button) {
backButton = (Button) v;
break;
}
}
backButton.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
Intent optionsIntent = new Intent(PlayerSelection.this, OptionsScreen.class);
startActivity(optionsIntent);
}
});
list.addHeaderView(header);
list.setAdapter(adapter);
}
答案 0 :(得分:1)
实现此目标的简便方法是在CustomAdapter
类中创建一个字段:
private OnClickListener listener;
然后为此字段指定setter方法。下一步是在Activity
类中指定此侦听器,如下所示:
CustomAdapter adapter = (CustomAdapter) getListView().getAdapter();
adapter.setListener(<your implementation of the listener>);
然后在CustomAdapter
的{{1}}方法中,将此监听器设置为按钮:
getView()
希望这有帮助。