我的主要活动中有一个列表视图,后面是一个文本视图。列表视图中包含按钮。当单击列表中的按钮时,我希望一些文本出现在 textatrea 上。但我无法捕捉到按钮的点击。
以下是我使用的代码。请告诉我有什么问题。(我不想要替代解决方案,但我想知道代码中有什么问题)
public class MyFirstAppActivity extends Activity implements OnItemClickListener {
ListView listview ;
String[] array = new String[] {"Click1","Click2"};
ArrayAdapter <String> arrayadapter;
TextView textview;
public void onCreate(Bundle savedInstance){
super.onCreate(savedInstance);
setContentView(R.layout.main);
arrayadapter = new ArrayAdapter<String>(this, R.layout.button,array);
listview = (ListView)findViewById(R.id.lv_1);
listview.setAdapter(arrayadapter);
listview.setOnItemClickListener(this);
}
public void onItemClick(AdapterView<?>arg1,View v,int Position, long id){
textview = (TextView)findViewById(R.id.textview);
textview.setText("Hello, you just clicked a button"+Position);
}
}
这会将活动设置为 main.xml,如下所示。但是当我点击列表中的按钮时,点击不会被捕获。为什么会这样?
主.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<ListView android:id="@+id/lv_1"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</ListView>
<TextView android:id = "@+id/textview"
android:layout_width = "match_parent"
android:layout_height = "match_parent"
android:layout_below = "@id/lv_1"
android:text="Message about the button is displayed here">
</TextView>"
</RelativeLayout>
按钮.xml
<?xml version="1.0" encoding="utf-8"?>
<Button xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/button" >
</Button>