最初,该应用正在使用
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 100
}
但是对于错误,我决定使用AppCompat
我这样做是为了模仿它,但组件的行为与原始主题的行为方式不同。
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
答案 0 :(得分:0)
<强>编程:强>
getWindow().setFlags(
WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
AppCompat的全屏主题:
<style name="Theme.AppCompat.Light.NoActionBar.FullScreen" parent="@style/Theme.AppCompat.Light">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
</style>