我的屏幕旋转有问题 我有一个包含数据的ListView 每次旋转屏幕时,ListView都会消失 我在包含ListView的类中尝试了这个。
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
loadActivity();
}
我也把它放在清单
中android:configChanges="keyboardHidden|orientation"
仍然没有。
任何帮助都将受到赞赏并获得一个很大的绿色标记
private void loadActivity() {
// Do all of your work here
list = (ListView) findViewById(R.id.listView);
personList = new ArrayList<HashMap<String, String>>();
getData();//get business email
final Intent intent = getIntent();
email = intent.getStringExtra("email");
txt.setText(email);
}
答案 0 :(得分:0)
Jitty对this thread的回答对我有用:
将android:configChanges="orientation|keyboardHidden|screenSize|keyboard"
添加到AndroidManafest.xml