0

カスタム ビューを画面全体に表示したい。ウェイトを使用しましたが、まだ機能していません。次のコードを使用しています。誰か解決策を教えてください。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/back"
android:orientation="horizontal"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >

<com.alarm_animation.CustomeView
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:background="#ffffff" />

4

3 に答える 3

1

カスタム ビューでは、wrap_content ではなく match_parent を使用します。

layout_weight を削除します。この状況では必要ありません。

于 2013-10-13T09:35:16.623 に答える
0

このようにカスタムビューを設定してみてください.-

<com.alarm_animation.CustomeView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff" />
于 2013-10-13T09:36:16.713 に答える
0

このようにレイアウトファイルを変更します

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/LinearLayout2"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/back"
    tools:context=".MainActivity" >

    <com.alarm_animation.CustomeView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#ffffff" />
于 2013-10-13T09:38:13.170 に答える