アプリのすべてのアクティビティに対してマニフェストですべての許可を与えていましたが、携帯電話を回転させている間にアクティビティが再開されました。アラートボックスを閉じて再起動し、データとアクティビティを取得するためにWebサーバーを再度呼び出して、以前の状態を維持します。私はすべての可能性を試しましたが、解決策を得ることができません。この問題を解決するにはどうすればよいですか?
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.station_list_layout);
ConstantValues.CURRENT_ACTIVITY=StationListActivity.this;
ConstantValues.NEAREST_PLACE_MENU_SLIDER_FLAG=false;
ConstantValues.MESSAGE_MENU_SLIDER_FLAG=false;
ConstantValues.STATION_LIST_MENU_SLIDER_FLAG=true;
orientation=getResources().getConfiguration().orientation;
userAndMessageCount=new UserAndMessageCount();
((TextView)findViewById(R.id.stationlist_route_name)).setText(ConstantValues.ROUTE_NAME);
list = (ListView) findViewById(R.id.myListView);
Cursor cursor=new UpdateLocalDatabase().getStationNameByRoute();
adapter=new StationListAdapter(StationListActivity.this, cursor);
adapter.notifyDataSetChanged();
if(!ConstantValues.STATION_LIST_LOATED)
userAndMessageCount.execute();
else
{
Footer.setMsgCount(ConstantValues.MSG_COUNT);
Footer.setUserCount(ConstantValues.FAVORITE_STATION_LIST.size());
list.setAdapter(adapter);
}
}
<activity
android:configChanges="orientation|keyboardHidden"
android:screenOrientation="unspecified"
android:name=".LaunchingPageActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>`