在我的应用程序中,我有一个带有自定义侦听器的列表视图。
我想在我的活动中使用 onSaveInstanceState 和 onRestoreInstanceState,但我唯一需要的信息是在我的类 CustomListener 中的方法 OnItemClick 中。
我需要参数"位置"的值,这是 4 个 onItemClick 的参数之一,因为这是知道单击项目的列表位置的唯一方法。在保存实例状态和恢复实例状态的两个 mthod 中,我需要知道正确恢复活动的状态。
我的问题有两个: 1 - 是正确的(是最佳实践)在自定义侦听器中创建方法获取和设置并在活动中使用它们,其中两个方法是保存实例状态和恢复实例状态(我认为这不是这样做的正确方法,但我没有其他想法) 2 - 一旦我有了参数位置,我就有问题在自定义侦听器的方法 OnItemClick 中设置此参数,因为如果我处于纵向模式并转到横向模式,系统不会调用 OnItemClick,因此方法内的参数不会修改,横向布局也不会修改。
此方法在主活动中:
private void populate(ListView lv){
ImageAdapter arrayAdapter;
//set list view
arrayAdapter = new ImageAdapter(this, R.layout.list_view_layout, arrayFromNumberToId, hmFromIdToName);
lv.setAdapter(arrayAdapter);
//set list listener
listener=new CustomListener(hm, hmFromIdToName, arrayFromNumberToId);
lv.setOnItemClickListener(listener);
}
此方法位于类自定义侦听器中:
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
int imageID;
String description;
String name;
imageID = arrayFromNumberToId[position];
description = hm.get(imageID);
name = hmIdToName.get(arrayFromNumberToId[position]);
extras = new Bundle();
extras.putInt("imageID", imageID);
extras.putCharSequence("description", description);
extras.putCharSequence("name", name);
if(parent.getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {
Intent intent = new Intent(parent.getContext(), DescriptionActivity.class);
intent.putExtras(extras);
parent.getContext().startActivity(intent);
}
else{
ImageView imageViewLayout;
TextView textView;
textView = (TextView) parent.getRootView().findViewById(R.id.textDescription);
textView.setText(description);
imageViewLayout = (ImageView) parent.getRootView().findViewById(R.id.imageBig);
imageViewLayout.setImageResource(imageID);
textView = (TextView) parent.getRootView().findViewById(R.id.textName);
textView.setText(name);
textView.setTypeface(null, Typeface.BOLD);
}
}
感谢您的回答!!
为了回答您的第一个问题,我的建议是将位置存储为活动的成员变量,并将其添加到保存的实例状态中,如下所示:
class MyActivity extends Activity {
private int mSelectedItemPosition;
@Override
protected void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
outState.putInt(POSITION, mSelectedItemposition);
}
@Override
protected void onRestoreInstanceState(Bundle savedInstanceState) {
super.onRestoreInstanceState(savedInstanceState);
savedInstanceState.getInt(POSITION);
}
...
}
然后,只要您的 CustomListener 类嵌套在活动类中,只需在 onItemClick 方法中设置 mSelectedItemPosition 变量:
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
mSelectedItemPosition = position;
...
}
我可能误解了您的第二个问题,但没有必要在 onItemClick 方法中设置位置值,因为单击的项目的位置将作为该方法的参数传递给您。
非常感谢@Jason的回答!!
在你的建议之前,我没有考虑内部类,但是一个很好的解决方案。
对于 2° 问题,我已经解决了,但如果其他人会有同样的问题,我会尝试更好地解释。
第二个问题是你回答后的部分: 如果我的代码中的布局仅在 onItemClick 中更改,我如何在 onRestoreInstanceState 中恢复 mSelectedItemPosition,这是一个我不调用的方法,但仅由系统调用?
在像内部类一样使用CustomListener之后,我在MyActivity checkOrientation中创建了一个方法,我将其用于代码的两个点,在onItemClick和onRestoreInstanceState中。
这两种方法在 MyActivity 中:
@Override
protected void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
outState.putInt("POSITION", myPosition);
}
@Override
protected void onRestoreInstanceState(Bundle savedInstanceState) {
super.onRestoreInstanceState(savedInstanceState);
myPosition = savedInstanceState.getInt("POSITION");
checkOrientation(myPosition, null);
}
此方法也在MyActivity中,当父为空时,由onRestoreInstanceState内部活动调用,因此我更改了代码,因为在一种情况下,我有来自onItemClick的父项,在其他情况下,我在活动内部,所以我有我需要的所有方法:
private void checkOrientation(Integer position, AdapterView<?> parent){
int imageID;
String description;
String name;
Bundle extras;
imageID = arrayFromNumberToId[position];
description = hm.get(imageID);
namePokemon = hmFromIdToName.get(arrayFromNumberToId[position]);
extras = new Bundle();
extras.putInt("imageID", imageID);
extras.putCharSequence("description", description);
extras.putCharSequence("name", name);
if(parent != null) {
if (parent.getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {
Intent intent = new Intent(parent.getContext(), DescriptionActivity.class);
intent.putExtras(extras);
parent.getContext().startActivity(intent);
} else {
ImageView imageViewLayout;
TextView textView;
textView = (TextView) parent.getRootView().findViewById(R.id.textDescription);
textView.setText(description);
imageViewLayout = (ImageView) parent.getRootView().findViewById(R.id.imageBig);
imageViewLayout.setImageResource(imageID);
textView = (TextView) parent.getRootView().findViewById(R.id.textName);
textView.setText(name);
textView.setTypeface(null, Typeface.BOLD);
}
}
else{
if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {
Intent intent = new Intent(this, DescriptionActivity.class);
intent.putExtras(extras);
this.startActivity(intent);
} else {
ImageView imageViewLayout;
TextView textView;
textView = (TextView) findViewById(R.id.textDescription);
textView.setText(description);
imageViewLayout = (ImageView) findViewById(R.id.imageBig);
imageViewLayout.setImageResource(imageID);
textView = (TextView) findViewById(R.id.textName);
textView.setText(name);
textView.setTypeface(null, Typeface.BOLD);
}
}
}
此方法位于自定义侦听器中:
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
myPosition = position;
checkOrientation(position, parent);
}