1

我正在查看其他列表帖子列表,但它们似乎对我的情况没有帮助或可用(也许我只是愚蠢)。无论如何,我正在构建一个需要登录到列表的应用程序,您可以在其中添加一个项目,如果选择该项目,将显示一个新的空列表,可以在其中添加项目。

例如,假设您登录,第一个列表是锻炼列表。该列表包括具有以下字段的项目:

workout_list_name_ , 
workout_list_type, and 
workout_list_date. 

如果您选择该项目,它会将您带到一个空列表(新活动),您可以在其中添加一个带有字段的项目:

item_name , 
item_sets,item_reps, 
item_weight, 
item_completed(boolean value user can change if they have already completed it).

这就是我的问题所在:我有这两个 ListView 都带有android:id="@+id/android:list". 两个 ListView 都使用SimpleCursorAdapter来显示我要添加的行的 xml 布局。当我创建锻炼列表并保存它时,它会添加到我的 sqlite 数据库中,但它没有显示在我的 ListView 中。

如何更改我的 ListView 结构和适配器以显示数据? 我想摆脱

WorkoutList extends ListActivity 

并使其仅扩展Activity,但我只是不确定如何实现这一点。

你能帮助我吗?

这是我的第一个列表的代码:

public class WorkoutList extends ListActivity {

Button addNewWorkout;
WorkoutDbAdapter mDbHelper;
public static final int CREATE_WORKOUT = 1;
//public static final int EDIT_WORKOUT = 2;
public static final int SET_WORKOUT = 2;
String dateCreated = null;
Calendar now = null; 
SimpleDateFormat format = null;
ListView myList;

Intent prevIntent ;
String woName,userName;

@Override
public void onCreate(Bundle savedInstanceState){
    super.onCreate(savedInstanceState);
    setContentView(R.layout.workout_list);

    addNewWorkout = (Button) findViewById(R.id.btnNewWorkout);
    prevIntent = getIntent();
    userName = prevIntent.getStringExtra("userName");

    // do the work for getting the current time and formatting it
    now = Calendar.getInstance();
    format = new SimpleDateFormat("EEE MMM dd hh:mm aaa");
    dateCreated = format.format(now.getTime());

    mDbHelper = new WorkoutDbAdapter(this);
    mDbHelper.open();

    myList = (ListView)findViewById(R.id.workout_list);

    registerForContextMenu(myList);

    myList.setDivider(getResources().getDrawable(R.color.mainDivider));
    myList.setDividerHeight(1);

    addNewWorkout.setOnClickListener(NewWorkout);

    fillData();
}

OnClickListener NewWorkout = new OnClickListener(){

    public void onClick(View arg0) {

        Intent newWorkout = new Intent();
        newWorkout.setClass(getApplicationContext(), AddWorkout.class);
        newWorkout.putExtra("dateCreated", dateCreated );
        newWorkout.putExtra("userName", userName);
        startActivityForResult(newWorkout, CREATE_WORKOUT);

    }

};
 //===============================================================================
//
@Override
public void onPause(){
    super.onPause();

}



//===============================================================================
//
@Override
public void onResume(){
    super.onResume();
    mDbHelper.open();
}

@Override
public void onDestroy(){
    super.onDestroy();
    mDbHelper.close();
}

//================================================================================
//
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data){
    super.onActivityResult(requestCode, resultCode, data);

        woName = data.getStringExtra("workoutName");

    fillData();
}

//================================================================================
//
// Fill the data for UI rebuilds
private void fillData(){
    Cursor workoutCursor = mDbHelper.fetchAllWorkouts(userName);
    startManagingCursor(workoutCursor);

    String [] from = new String [] {WorkoutDbAdapter.KEY_WORKOUT_NAME,WorkoutDbAdapter.KEY_WORKOUT_CREATED_DATE ,
            WorkoutDbAdapter.KEY_WORKOUT_TYPE};

    int [] to = new int [] {R.id.dateCreatedLabel, R.id.nameLabel, R.id.typeLabel};

    SimpleCursorAdapter workouts = new SimpleCursorAdapter(this, R.layout.workout_row, workoutCursor, from, to);

    myList.setAdapter(workouts);


}


//===============================================================================
//
@Override
public void onCreateContextMenu(ContextMenu menu , View v, ContextMenuInfo menuInfo){
    super.onCreateContextMenu(menu, v, menuInfo);
    MenuInflater inflater = getMenuInflater();
    menu.setHeaderTitle("Options");
    menu.setHeaderIcon(R.drawable.ic_launcher);
    inflater.inflate(R.menu.list_item_longpress, menu);
}

//===============================================================================
//
@Override
public boolean onContextItemSelected(MenuItem item){
    switch(item.getItemId()){
    case R.id.menu_delete:
        final AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo();
        AlertDialog.Builder confirmAlert = new AlertDialog.Builder(this)
        .setIcon(R.drawable.ic_launcher)
        .setTitle("Are you Sure?")
        .setMessage("This will permanently delete the workout and all subsequent exercises from your workout list. " +
                        "Are you sure you want to continue?")
        .setPositiveButton("Ok", new DialogInterface.OnClickListener() {

            public void onClick(DialogInterface dialog, int which) {
                mDbHelper.deleteWorkout(info.id);
                fillData();
            }
        })
        .setNegativeButton("Cancel", new DialogInterface.OnClickListener() {

            public void onClick(DialogInterface dialog, int which) {
                dialog.cancel();                
            }
        });
        confirmAlert.show();
        return true;
    case R.id.menu_cancel:
        return false;
    }
    return super.onContextItemSelected(item);

}

//================================================================================

protected void onListItemClick(ListView myList, View v, int position, final long id){
    super.onListItemClick(myList, v, position, id);
    AlertDialog.Builder dialog = new AlertDialog.Builder(this)
    .setIcon(R.drawable.edit)
    .setTitle("Update Selected Workout")
    .setMessage("Would you like to update the current Workout? Click continue to proceed.")
    .setPositiveButton("Continue", new DialogInterface.OnClickListener() {

        public void onClick(DialogInterface arg0, int arg1) {
            final Intent i = new Intent(getBaseContext(), ExerciseList.class);
        i.putExtra(WorkoutDbAdapter.KEY_ROW_ID, id);
        i.putExtra("workoutName", woName);
        startActivityForResult(i, SET_WORKOUT);

        }
    })
    .setNegativeButton("Back", new DialogInterface.OnClickListener() {

        public void onClick(DialogInterface dialog, int which) {
            dialog.cancel();

        }
    });
    dialog.show();
}


}
4

2 回答 2

0

我似乎通过另一篇文章找到了自己的答案。我找错地方了,这里是实现ListView无的方法的链接extends ListViewActivity

Android如何在不扩展listActivity的情况下为listView使用适配器

于 2012-08-31T16:49:03.163 回答
0

根据您的需求,您的代码看起来很乱,而且很难维护。
仅当屏幕上的唯一内容是您的列表时,您才应该使用 ListActivity,否则不要使用。所以首先摆脱ListActivity。以下是您可以遵循的几个步骤:

  • 摆脱 ListActivity。让你类扩展 Activity。
  • 为您的活动维护一个 xml 布局,其中将包含您的列表视图和您要显示的其他项目。像这样的东西会起作用:

    <RelativeLayout 
    
       xmlns:android="http://schemas.android.com/apk/res/android"
       android:layout_width="fill_parent"
       android:layout_height="fill_parent"
       android:orientation="vertical" >
    
       <ListView
           android:id="@+id/list"
           android:layout_width="fill_parent"
           android:layout_height="fill_parent"
           android:cacheColorHint="#00000000" />
    </RelativeLayout>
    
  • 为第一个(主)listView 创建一个项目列表(数组、列表等)。使用这些项目创建一个适配器并将其设置为列表适配器。

  • 对于此列表中的不同项目,创建不同的空列表集(数组、列表等)。
  • 设置此 ListView 的单击侦听器并实现其 onClick 方法。
  • 在 onClick 方法中,根据项目的位置创建一个具有相应空列表(数组、列表等)的适配器,并将其设置为当前列表视图的适配器。
  • 现在将项目添加到此列表并在列表适配器上调用 notifyDataSetChanged() 以使用当前添加的项目更新列表。
于 2012-08-31T17:12:08.103 回答