gpt4 book ai didi

java - 方向更改时 fragment 重新启动

转载 作者:行者123 更新时间:2023-12-01 11:26:58 24 4
gpt4 key购买 nike

我的 Android 应用程序中有这个层次结构

Activity 包含 FragmentGame fragment ,该 fragment 包含 FragmentTypeOfGame;

Activity >> FragmentGame >> FragmentTypeOfGame

在 FragmentGame 中,我有一个计时器和另一个标签,因此,当我更改屏幕方向时,我的游戏似乎重新启动,但我可以检查计时器是否继续运行(我猜,因为它是另一个线程)。

所以我的问题是,如何在不重新启动的情况下保持所有屏幕运行。

我已经看过这些链接,但我不知道如何解决它?

Why not use always android:configChanges="keyboardHidden|orientation"?

Forcing Android to not redraw activity on orientation change

这是我的 list :

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
>
<meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/facebook_app_id"/>
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:configChanges="orientation"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<activity android:name="com.facebook.FacebookActivity"
android:configChanges=
"keyboard|keyboardHidden|screenLayout|screenSize|orientation"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:label="@string/app_name" />

<provider android:authorities="com.facebook.app.FacebookContentProviderXXXXXXXXX"
android:name="com.facebook.FacebookContentProvider"
android:exported="true" />
</application>

这是我的 GameFragment OnCreateView:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {

//Default components start
defaultComponentsStarting(inflater, container);

FourBlocksGameStyle f = new FourBlocksGameStyle();
frgManager.beginTransaction().replace(R.id.rl_root, f, "4blocks").addToBackStack(null).commit();

if (savedInstanceState != null) {
// Restore last state
actualGameTime = savedInstanceState.getDouble("actualGameTime");
}

handler = new Handler(Looper.getMainLooper());
mainRunnable = new Runnable() {
@Override
public void run() {
// Do something and reschedule ourself

if(GAMETIME <= actualGameTime){
cancelTimer();

setLabel(txtTimer, 0, GAMETIME / 1000);
int countSum = Integer.parseInt(txtHits.getText().toString());

//Devolve pra main cuidar da finalização
Intent i = new Intent(ctx, MainActivity.class);
i.putExtra("CountSum", countSum);
startActivity(i);
}
else {
actualGameTime += GAMEDELAY;
double floatingTime = actualGameTime / 1000;

setLabel(txtTimer, 0, floatingTime);
handler.postDelayed(this, GAMEDELAY);
}
}
};
return view;
}

这是我的 MainActivity onCreate?

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
FacebookSdk.sdkInitialize(getApplicationContext());
setContentView(R.layout.activity_main);

this.setVolumeControlStream(AudioManager.STREAM_MUSIC);

final SharedPreferences prefs = getSharedPreferences("hitColor", MODE_PRIVATE);
int startHighscore = prefs.getInt("highScore", 0);

gameOver = new GameOverFragment();
highScoreGameOver = new HighScoreFragment();
game = new GameFragment();

Intent i = getIntent();
int countSum = i.getIntExtra("CountSum", -1);

if(countSum == -1) {
//Log.d("GSS", "Primeira entrada");
if(savedInstanceState == null) {
Log.d("GSS", "savedInstace null");
getFragmentManager()
.beginTransaction()
.replace(R.id.layout_root_view, game)
.addToBackStack(null)
.commit();
}
}
else {
Log.d("GSS", "COUNT: " + String.valueOf(countSum));
Log.d("GSS", "HIGH: " + String.valueOf(startHighscore));

finishGame(countSum, startHighscore, prefs);
}
}

最佳答案

根据 Activity 的 configChanges 当前配置,当您更改方向时,您的 Fragment 将重新创建 UI。因为它将是全新的布局,所以这是有道理的。

但是您的 Fragment 不会再次调用 onCreate。它将在调用 onPauseonStop 后从 onCreateView 开始销毁 Fragment 的 UI。

因此,当方向发生变化时,即当 Fragment 进入 onPause 状态时,您应该将 UI 数据保存在 Bundle 对象中(将其定义为全局变量) fragment )在 onPause 中。由于 Fragment 将从 onCreateView 开始,因此您可以在 onCreateView 方法中膨胀布局后恢复 UI 数据。

Bundle savingInstanceState 将为 null。配置更改时它不会存储您的数据,因此您不能依赖它。

关于java - 方向更改时 fragment 重新启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30744800/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com