私はアンドロイド開発が初めてです。Android アプリの UI を作成しています。現在、mdpi 画面の高さは 480px です。そこで、mdpi の画面で高さが 480px になるように UI を設計しました。しかし、ステータス バーはデバイスの上部にスペースを必要とするため、RelativeLayout の一部の ImageView が重なっています。ステータスバーが占めるスペースを補う方法は? 画面によってステータス バーのサイズが異なり、タブレットではステータス バーが一番上にない場合もあります。私は混乱しています、助けてください!
編集: XML:
<?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"
android:orientation="vertical"
android:theme="@android:style/Theme.Black.NoTitleBar" >
<ImageView
android:id="@+id/imageView2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/imageView1"
android:clickable="false"
android:contentDescription="@string/p"
android:scaleType="center"
android:src="@drawable/volbar" />
<ImageView
android:id="@+id/imageView4"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:clickable="false"
android:contentDescription="@string/p"
android:scaleType="center"
android:src="@drawable/base" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:clickable="false"
android:contentDescription="@string/p"
android:scaleType="center"
android:src="@drawable/head" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/imageView1"
android:layout_alignParentRight="true"
android:layout_marginBottom="33dp"
android:layout_marginRight="19dp"
android:text="@string/press_to_update" />
<ImageView
android:id="@+id/imageView9"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/imageView2"
android:clickable="false"
android:contentDescription="@string/p"
android:scaleType="center"
android:src="@drawable/frag1"
/>
</RelativeLayout>