如何设置每个片段的屏幕百分比

时间:2015-07-11 11:34:26

标签: android android-fragments

我想在屏幕的横向模式中将划分的屏幕设计为两个不相等的部分。所以,我自动想到使用片段。但我遇到的问题是每个片段都匹配屏幕的一半。这不是我想要的。我想要的是一个屏幕,两个部分的宽度不相等。我想要这样的东西:

enter image description here

3 个答案:

答案 0 :(得分:2)

您可以使用重量参数。

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="3" />
</LinearLayout>

请注意两个LinearLayouts使用的权重。第一个的权重为1(它可以占据屏幕的1/4),第二个的权重为3(它可以占据屏幕的3/4)。

只需对您的碎片使用这个完全相同的概念,并按照您的意愿保持不变的比例。

希望我能说清楚。

答案 1 :(得分:0)

使用重量参数

<LinearLayout android:orientation="vertical" android:layout_height="fill_parent" android:layout_width="fill_parent">
  <LinearLayout android:layout_weight="1" android:layout_height="fill_parent" android:layout_width="fill_parent"/>
  <LinearLayout android:layout_weight="3" android:layout_height="fill_parent" android:layout_width="fill_parent"/>
</LinearLayout>

答案 2 :(得分:0)

设置线性布局重量以实现此目的......

<?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"
android:orientation="vertical" >

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="2" />

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1" />
</LinearLayout>