我有一个列表视图,其中包含通过其他活动添加的项目。我的目标是,当点击特定列表视图项时,它会启动,它会启动特定于所点击项目的对话框。
这是listview
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical">
<ListView
android:id="@+id/inventoryListView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:dividerHeight="1dp"
android:headerDividersEnabled="true"
android:onClick="f">
</ListView>
</LinearLayout>
</LinearLayout>]
这是适配器的活动
public class inventory extends AppCompatActivity {
public static ArrayList<String> items;
public static ArrayAdapter<String> adapter;
public static ListView inventoryListView;
SharedPreferences sharedPreferences;
protected void onCreate(Bundle savedInstanceSate){
super.onCreate(savedInstanceSate);
setContentView(R.layout.inventory);
inventoryListView = (ListView)findViewById(R.id.inventoryListView);
items = new ArrayList<String>();
adapter = new ArrayAdapter<String>(this,R.layout.inventory_list_view,items);
inventoryListView.setAdapter(adapter);
sharedPreferences = getSharedPreferences("my_prefs", 0);
updateInventory();
adapter.notifyDataSetChanged();
}
列表未填充,因为它只能通过其他活动填充,而不是包含列表视图的活动。
答案 0 :(得分:0)
答案 1 :(得分:0)
首先,您可以使用RecyclerView而不是Listview,它在内存管理和性能方面更有效。
正如@ghost所说,您可以使用ViewHolder模式并将您的活动上下文推送到您的视图持有者和适配器。您只需将点击逻辑放在viewHolder(适配器内部)中即可。