我现在已经搜索了一段时间,但仍然没有运气。将代码更改为现在编辑的版本。 的 EDITED 在应用程序中启动onCreate:
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.game_activity);
. . . . .
该应用仍然完美无瑕。 在onConfigurationChange()中,我删除了setContentView(),因此开关实际上什么都不做:
@Override
public void onConfigurationChanged(Configuration newConfig)
{
super.onConfigurationChanged(newConfig);
switch(newConfig.orientation)
{
case Configuration.ORIENTATION_PORTRAIT:
break;
case Configuration.ORIENTATION_LANDSCAPE:
break;
}
} // onConfigurationChanged()
现在白屏已经消失了,这是一种解脱 但; 当应用程序以P模式启动并且配置更改为L模式时,布局保持与P模式相同,反之亦然。
我突然有预感! 活动只开始一次!这正是我想要的,但它也意味着那里的代码只执行一次。我必须先检查一下。
修改
好的,检查出所有必要的东西。但问题仍然存在。
以纵向模式启动应用程序时,每件事情都很好。但是当我更改为横向模式时,配置更改只能使用纵向布局,反之亦然。
我对xml中的不同方向有不同的布局。 我也有
android:configChanges="orientation|screenSize" >
清单中的。
我没有选择,任何帮助都会受到最高的赞赏。
再次编辑
很难证明,但我成功了。 这是用于纵向模式的XML模式之一:用于横向模式:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/portGame480x800"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:tag="layout_game_activity"
tools:context=".MeMoInfoActivity" >
.....
</LinearLayout
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/landGame480x800"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:baselineAligned="false"
android:tag="layout-land_game_activity"
tools:context=".MeMoInfoActivity" >
....
</LinearLayout>
这段代码:
public void onConfigurationChanged(Configuration newConfig)
{
super.onConfigurationChanged(newConfig);
Log.i(TAG, "***************************\nMeMoGameActivity onConfigurationChanged\n***************************");
switch(newConfig.orientation)
{
case Configuration.ORIENTATION_PORTRAIT:
Toast.makeText(this, "portrait", Toast.LENGTH_SHORT).show();
LinearLayout portLayout = (LinearLayout) findViewById(R.id.portGame480x800);
if(portLayout != null)
{
String portTag = (String) portLayout.getTag().toString();
Log.i(TAG, "Portrait portTag: "+portTag);
}
break;
case Configuration.ORIENTATION_LANDSCAPE:
Toast.makeText(this, "Landscape", Toast.LENGTH_SHORT).show();
LinearLayout landLayout = (LinearLayout) findViewById(R.id.landGame480x800);
if(landLayout != null)
{
String landTag = (String) landLayout.getTag().toString();
Log.i(TAG, "LansScape landTag: "+landTag);
}
break;
}
} // onConfigurationChanged()
这是来自logcat:
09-30 17:10:32.376: I/MeMoGame(2509): ***************************
09-30 17:10:32.376: I/MeMoGame(2509): MeMoGameActivity onConfigurationChanged
09-30 17:10:32.376: I/MeMoGame(2509): ***************************
09-30 17:10:32.534: I/MeMoGame(2509): LANDSCAPE InfoActivity dispWidthPX: 800
09-30 17:11:02.234: I/MeMoGame(2509): ***************************
09-30 17:11:02.234: I/MeMoGame(2509): MeMoGameActivity onConfigurationChanged
09-30 17:11:02.234: I/MeMoGame(2509): ***************************
09-30 17:11:02.384: I/MeMoGame(2509): Portrait portTag: layout_game_activity
09-30 17:11:02.384: I/MeMoGame(2509): PORTRAIT InfoActivity dispWidthPX: 480
09-30 17:11:02.896: D/dalvikvm(2509): GC_CONCURRENT freed 102K, 3% free 6320K/6471K, paused 19ms+7ms, total 320ms
应用程序以纵向模式启动。很明显它从未执行过景观布局。
有人可以帮忙吗?
答案 0 :(得分:3)
您应该让Android框架根据当前配置决定使用哪种布局。因此,创建2个文件夹layout-land
和layout-port
,并放置您的布局(使用相同的文件名很重要)。另外,删除代码中的那些开关。