我想用标题栏设置我的活动全屏,我该怎么做?谢谢
答案 0 :(得分:11)
在styles.xml中:
<resources>
<style name="Theme.FullScreen" parent="@android:style/Theme.Holo">
<item name="android:windowNoTitle">false</item>
<item name="android:windowFullscreen">true</item>
</style>
</resources>
请参阅清单中的自定义样式:
<activity android:name=".MyActivity" android:theme="@style/Theme.FullScreen"/>
说实话,我自己没有测试过这种组合。
答案 1 :(得分:2)
这对我有用:
// Remove System bar (and retain title bar)
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
在代码中它看起来像这样:
import android.app.Activity;
import android.os.Bundle;
import android.view.Window;
import android.view.WindowManager;
public class ActivityName extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Remove System bar (and retain title bar)
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
// Set your layout
setContentView(R.layout.main);
}
}
答案 2 :(得分:1)
要创建具有自定义标题样式的全屏应用,请覆盖全屏主题的某些属性,如下所示:
<style name="AppTheme" parent="@android:style/Theme.Light.NoTitleBar.Fullscreen">
<item name="android:windowNoTitle">false</item>
<item name="android:windowTitleSize">45dip</item>
<item name="android:windowTitleBackgroundStyle">@style/TitleBackgroundStyle</item>
</style>
<style name="TitleBackgroundStyle">
<item name="android:background">@drawable/title</item>
</style>
并根据需要进行修改。
答案 3 :(得分:0)
我建议您为活动设置全屏主题,例如Theme.Black.NoTitleBar.Fullscreen并在活动布局中创建自定义标题栏。
答案 4 :(得分:0)
将您的应用主题设置为Theme.Holo.Compactmenu,使您的标题栏与图标一起显示