Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/210.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android视图绘制封面状态栏_Android_Layout_Surfaceview - Fatal编程技术网

Android视图绘制封面状态栏

Android视图绘制封面状态栏,android,layout,surfaceview,Android,Layout,Surfaceview,设备:HTC Sensation 操作系统:4.0.3 决议: 问题: 1在底部,我们看到屏幕的灰色部分 2进度条覆盖状态条的一部分 布局 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layo

设备:HTC Sensation 操作系统:4.0.3 决议: 问题: 1在底部,我们看到屏幕的灰色部分 2进度条覆盖状态条的一部分

布局

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <ImageView
        android:id="@+id/background"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <ru.freecode.archmage.android.view.GameProgressBar
        android:id="@+id/progress"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <ru.freecode.archmage.android.view.surface.NetworkGameSurface
        android:id="@+id/surface"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</RelativeLayout>