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

在您的自定义视图上使用 match_parent 而不是 wrap_content。

删除 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 回答