brian
brian

Reputation: 6912

The theme in manifest.xml

I change

android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"

to

android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"

But why it can not change orientation? If use android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen", it can change orientation. But if change to another one, it can't. I try it in Android 2.3.4. But in Android 4.0.2, it works success on change orientation. Why and how to avoid it?

Upvotes: 2

Views: 16935

Answers (1)

user1155300
user1155300

Reputation:

Add

android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" 

to each activity you need.

Upvotes: 6

Related Questions