2

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


 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>
4

2 回答 2

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[] 中获得 tha 值..

 int id=students_ids[position];
于 2012-04-21T05:39:39.873 回答
1

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

根据您的要求,我建议您使用SimpleCursorAdapter而不是ArrayAdapterwith ListView

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

看看SimpleCursorAdapters 和 ListViews

为 Android 创建自定义 CursorAdapter

于 2012-04-21T05:39:56.847 回答