我希望我的启动活动支持垂直和水平方向。
启动活动的代码如下
public class Splash extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.splash);
Thread timer = new Thread(){
public void run() {
try{
sleep(5000);
}catch(InterruptedException e){
e.printStackTrace();
}finally{
Intent ARCActivityIntent = new Intent("com.ex.rc.LISTSCREEN");
startActivity(ARCActivityIntent);//
finish();
}
}};
timer.start();
}
}
splash.xml代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|center_vertical"
android:background="@drawable/splash_bg"
>
</LinearLayout>
但问题是 - LISTSCREEN活动会重新创建方向更改的次数。
帮助我。
答案 0 :(得分:6)
我遇到了类似的问题。我修好了。这是解决方案。
仅为启动画面创建一个布局,但为LANDSCAPE
和PORTRAIT
创建不同的图像。由于您只有一个布局,即纵向,因此不会重新创建活动。但是背景图像会发生变化,从而产生方向变化的效果。
在onCreate中记下以下代码。
setContentView(R.layout.splash);
splashImage = (ImageView) findViewById(R.id.splash_img);
int orient = getWindowManager().getDefaultDisplay().getOrientation();
if (orient == 0) {
splashImage.setBackgroundResource(R.drawable.splash_portrait);
} else {
splashImage.setBackgroundResource(R.drawable.splash_landscape);
}
覆盖onConfigurationChanged
方法
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
int orient = getWindowManager().getDefaultDisplay().getOrientation();
if (orient == 0) {
splashImage.setBackgroundResource(R.drawable.splash_portrait);
} else {
splashImage.setBackgroundResource(R.drawable.splash_landscape);
}
}
清单中的SplashActivity应该如下所示
<activity
android:name="SplashActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
答案 1 :(得分:2)
这对我有用......
在清单中:将方向更改为android:screenOrientation="unspecified"
从初始布局中移除任何Oriantations,例如android:orientation="vertical"
<activity
android:name="com.gr8ly.gr8lysymbolshortcutkeys.Splash"
android:label="@string/app_name"
android:screenOrientation="unspecified"
android:theme="@android:style/Theme.Black.NoTitleBar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>