我从数据库获取数据并将其放入数组.Array包含CODE(int)和DESCRIPTION(String).Code在gridview中,我希望如果有人点击代码,那么应该显示已编译的描述一个新的activity.i使用了OnItemclicklistener,但是不知道如何从数组中获取String以在新活动中显示它。 “我希望arraylist的代码应该打印在第一个屏幕上,当点击的描述将在新活动中打印为textview”
private void show_data() {
final GridView gv = (GridView) findViewById(R.id.gridView);
// final ListView listview = (ListView) findViewById(R.id.listView1);
final Database_handler db = new Database_handler(this);
Cursor cur = db.fetchAllData();
final ArrayList<String> array_list = new ArrayList<String>();
if (cur.moveToFirst()) {
do {
array_list.add(cur.getString(0));
array_list.add(cur.getString(1));
} while (cur.moveToNext());
}
final StableArrayAdapter adapter = new StableArrayAdapter(this,
android.R.layout.simple_list_item_1, array_list);
// listview.setAdapter(adapter);
gv.setAdapter(adapter);
gv.setOnItemClickListener(new AdapterView.OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View v,
int position, long id) {
/*SOME CODE*/ }
这是Stablearrayadapter类
public class StableArrayAdapter extends ArrayAdapter<String> {
HashMap<String, Integer> mIdMap = new HashMap<String, Integer>();
public StableArrayAdapter(Context context, int textViewResourceId, List<String> objects) {
super(context, textViewResourceId, objects);
for (int i = 0; i < objects.size(); ++i) {
mIdMap.put(objects.get(i), i);
}
}
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">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/textView_descrip"
android:layout_alignParentLeft="true"
android:layout_marginLeft="70dp"
android:layout_alignParentTop="true"
android:layout_marginTop="50dp"/>
</RelativeLayout>
激活描述
public class desc_view extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); //To change body of overridden methods use File | Settings | File Templates.
setContentView(R.layout.desc_view);
/* try {
Intent recv = getIntent();
ArrayList<String> array_list_recvd = recv.getStringArrayListExtra("array_list2");
int intValue = recv.getIntExtra("intVariableName", 0);
TextView tv = (TextView) findViewById(R.id.textView_descrip);
tv.setText(array_list_recvd.get(intValue));
setContentView(tv);
} catch (Exception e) {
Log.d("Error Second :", e.toString());
}*/
}
}
答案 0 :(得分:0)
你应该使用Map<String,String>
ArrayList<Map<String,String>> array_list = new ArrayList<Map<String,String>>();
if (cur.moveToFirst()) {
do {
Map<String,String> map=new HashMap<String,String>();
map.put("code",cur.getString(0));
map.put("desc",cur.getString(1));
array_list.add(map);
} while (cur.moveToNext());
}
以及itemClick
String desc=list.get(position).get("desc");