我使用ArrayAdaptor实现了可点击的列表视图:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_my_tasks);
myTasksListView = (ListView) findViewById(R.id.mytasks_listView);
myTasksListView.setOnItemClickListener(this);
tasks = getTasks(); //of type Task[]
ArrayAdapter<Task> adapter = new ArrayAdapter<>(this, android.R.layout.simple_list_item_1, tasks);
myTasksListView.setAdapter(adapter);
}
public void onItemClick(AdapterView<?> l, View v, int position, long id) {
Intent intent = new Intent(this, TaskDetail.class);
intent.putExtra("position", position);
intent.putExtra("id", id);
startActivity(intent);
}
现在,在我开始点击项目的新活动中,我可以获得被点击的项目的位置;但是,我不确定获得实际数组的最佳方法是什么。我可以
找到启动新活动的活动,然后从那里访问ArrayAdaptor?
让我的类可以使用parcelable,然后在我的对象本身上调用intent.putExtra()吗?
或者这是另一种被认为是“最佳实践”的方法吗?我试图跟随this helpful comment,但看起来有问题的数组是硬编码的吗?
答案 0 :(得分:1)
最好的方法是让<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_alignParentBottom="true">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_marginTop="20dp"
android:textColor="#ff0000"
android:textSize="18sp"
android:layout_marginBottom="10dp"
android:text="All History" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="@dimen/size_30">
<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginBottom="10dp"
android:text="Recent History" />
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/textView4">
<android.support.v7.widget.RecyclerView
android:id="@+id/rv_route_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.v4.widget.NestedScrollView>
</RelativeLayout>
</LinearLayout>
</ScrollView>
类实现Task
接口。如果您这样做,则可以使用Intent.putExtra(String, Parcelable[])
并只需致电
Parcelable