当按钮事件发生时,我正在尝试从字符串数组显示列表视图。这就是我的做法
btnSearch.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
list_view.setAdapter(new ArrayAdapter<String>
(MyActivity.this,
android.R.layout.simple_list_item_1, String_array));
}
});
现在,在单击按钮时,它会显示一个空白列表视图。如果我专注于列表视图,那么项目加载,当不聚焦时会消失。知道我哪里出错了吗?
我为按钮和列表视图设置的布局:
<Button
android:id="@+id/button1"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/linearLayout1"
android:layout_marginLeft="101dp"
android:layout_marginTop="17dp"
android:text="Search" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/button1"
android:layout_marginTop="15dp"
android:orientation="vertical" >
<ListView android:id="@+id/ListView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</ListView>
</LinearLayout>