我有以下布局文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<View
android:layout_width="match_parent"
android:layout_height="20dp"
android:background="@color/blue" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" >
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/red" />
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/yellow" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="20dp"
android:background="@color/blue" />
</LinearLayout>
它使用嵌套权重,我知道性能问题 我想在appwidget中显示这个布局,但是当我加载appwidget时,会出现消息“无法加载小部件”。我认为这是因为嵌套权重(不确定)。
当我使用RelativeLayout
作为基本布局时,我有以下内容:
<?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" >
<View
android:id="@+id/top"
android:layout_width="match_parent"
android:layout_height="20dp"
android:background="@color/blue" />
<View
android:id="@+id/bottom"
android:layout_width="match_parent"
android:layout_height="20dp"
android:background="@color/blue" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/bottom"
android:layout_below="@id/top" >
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/red" />
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/yellow" />
</LinearLayout>
</RelativeLayout>
当我使用此布局时,红色和黄色视图不显示,我猜高度保持在0dp
。
我如何实现目标?
要清楚:我希望在顶部和底部有一个固定高度的视图。在他们之间我希望有几个相同高度的视图,填补空白。
修改
所以我发现了一些东西。当你的布局中有两个级别的ViewGroups时,appwidget不会显示:
<LinearLayout
android:id="@+id/middle"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="20dp"
android:layout_marginTop="20dp"
android:orientation="vertical" >
</LinearLayout>
<View
android:id="@+id/top"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_alignParentTop="true"
android:background="@color/teal" />
<View
android:id="@+id/bottom"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_alignParentBottom="true"
android:background="@color/teal" />
这样可行,但这并不是:
<LinearLayout
android:id="@+id/middle"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="20dp"
android:layout_marginTop="20dp"
android:orientation="vertical" >
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/red" />
</LinearLayout>
<View
android:id="@+id/top"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_alignParentTop="true"
android:background="@color/teal" />
<View
android:id="@+id/bottom"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_alignParentBottom="true"
android:background="@color/teal" />
有谁知道为什么会这样,以及如何实现我的想法?克里斯托弗的形象显示了我的想法。
答案 0 :(得分:0)
如果我理解你的要求,这就是你想要实现的布局。
我更改了您的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" >
<LinearLayout
android:id="@+id/middle"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="20dp"
android:layout_marginTop="20dp"
android:orientation="vertical" >
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/red" />
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/white" />
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/red" />
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/white" />
</LinearLayout>
<View
android:id="@+id/top"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_alignParentTop="true"
android:background="@color/teal" />
<View
android:id="@+id/bottom"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_alignParentBottom="true"
android:background="@color/teal" />
</RelativeLayout>
如果将权重全部设置为1,则放置在“中间”的所有视图都将具有统一的高度。
答案 1 :(得分:0)
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/theparent"
>
<View
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_alignParentTop="true"
android:background="@color/red"
/>
<View
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_alignParentBottom="true"
android:background="@color/red"
/>
</RelativeLayout>
这应该照顾你的页眉和页脚..告诉我更多关于你想在内容领域做什么,我可以帮助你