具有多个控件的Android列表视图

时间:2012-04-21 05:30:05

标签: java android xml listview

我是android新手。我正在开发一个应用程序,其中有一个带有编辑和删除按钮的学生列表视图。像

  
 STUDENT LIST
     

[ABC] [编辑] [删除]

     

[DEF] [编辑] [删除]

     

使用此代码,我可以在<Textview>

中列出学生详细信息
public class DataBaseDemoActivity extends ListActivity {
/** Called when the activity is first created. */
  SQLiteDatabase db;
  Button btnInsert;
  ArrayAdapter<String> students;

  @Override
  public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  try{
  db=openOrCreateDatabase("StudentDB",SQLiteDatabase.CREATE_IF_NECESSARY,null);

  Cursor c=db.rawQuery("SELECT * FROM temp",null);
  String[] students = new String[c.getCount()];

  if (c.moveToFirst())
  {                       
      for (int i = 0; i < c.getCount(); i++)
      {
          students[i] = c.getString(0).toString()+" "+c.getString(1).toString();
          c.moveToNext();
      }           
  }
  c.close();

  setListAdapter(new ArrayAdapter<String>(this, R.layout.list_item, students));

  ListView lv = getListView();
  lv.setTextFilterEnabled(true);

  lv.setOnItemClickListener(new OnItemClickListener() {
    public void onItemClick(AdapterView<?> parent, View view,
        int position, long id) {
      // When clicked, show a toast with the TextView text
      Toast.makeText(getApplicationContext(), ((TextView) view).getText(),
          Toast.LENGTH_SHORT).show();
    }
  });


  }catch(SQLException e)
  {
  }
}

}

我需要在列表视图中存储记录的id,这样当我点击编辑或删除按钮时,我将不得不找出ID并对数据库进行更改。如何将值设置为两个字段,例如<TextView> [显示详细信息]和<EditText> [可见性:不可见 - 以保存记录的ID]。我可以使用上面的代码将详细信息发送到<TextView>。任何建议将不胜感激。

更新:

我正在使用的布局

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal"    
    >
    <EditText 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:visibility="invisible"
        android:inputType="text"
        android:onClick="showInfo"
        />
    <TextView xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="230dip"
        android:layout_height="wrap_content"
        android:textSize="16sp"
        android:id="@+id/studentInfo" >
    </TextView>

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/action"
        android:onClick="showInfo"
         />

</LinearLayout>

2 个答案:

答案 0 :(得分:1)

在这一行之后..

   students[i] = c.getString(0).toString()+" "+c.getString(1).toString();
    student_ids[i]=Integer.parseInt(//get the  id... )
  //and you dont need to put it in invisible edittext...

在onclick方法中,您将获得整数“位置”..并在该位置的students_ids []中获取值。

 int id=students_ids[position];

答案 1 :(得分:1)

您可以在游标数据获取循环中获取Id,为其使用任何HashMap<id,String>集合并将ID与数据(文本)一起存储。

根据您的要求,我建议您使用SimpleCursorAdapter代替ArrayAdapter ListView

因此,您可以使用列表轻松管理数据库记录,并在单击列表项时获取与特定记录的数据库相关的所有信息。

查看SimpleCursorAdapters and ListViews

Creating a custom CursorAdapter for Android