1

私はアンドロイド開発が初めてです。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>
4

4 に答える 4

0

高さを特定のサイズに設定しようとしないでください。可能な限り、「layout_height」の値として「wrap_content」または「match_parent」を使用してください。

コンテンツが利用可能な画面の高さよりも高いと思われる場合は、コンテンツのコンテナーとして ScrollView を使用することをお勧めします。

コンテンツが利用可能な画面の高さに常に収まると思われる場合は、単純に (RelativeLayout のような) コンテナーを layout_height="match_parent" で使用できます。

特定のレイアウトがある場合は、XML を投稿できます。

于 2013-04-13T06:37:37.373 に答える