ListView在屏幕旋转时消失

时间:2015-11-02 16:54:10

标签: android listview screen-orientation

我的屏幕旋转有问题 我有一个包含数据的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);


}

1 个答案:

答案 0 :(得分:0)

Jitty对this thread的回答对我有用: 将android:configChanges="orientation|keyboardHidden|screenSize|keyboard"添加到AndroidManafest.xml

中的活动代码中