gpt4 book ai didi

android - 设置 ScrollView 权重使 View 不显示

转载 作者:行者123 更新时间:2023-11-30 02:50:05 25 4
gpt4 key购买 nike

我正在尝试将 50% 的高度设置为 ScrollView。为此,我使用了 android:layout_height="0dp"android:layout_weight="0.5" 但 ScrollView 和 LinearLayout 之后它没有被显示。这是我的 .xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">

<TextView
android:id="@+id/registerProductTitle"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_marginTop="20dip"
android:layout_marginBottom="20dip"
android:gravity="center"
android:text="@string/registerProductTitle"
android:textSize="12pt">
</TextView>

<ScrollView
android:layout_width="match_parent"
android:layout_height="0dp" // 50% height
android:layout_weight="0.5" // 50% height
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip">

<TableLayout
android:id="@+id/mainTable"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
android:paddingLeft="3dip"
android:paddingRight="3dip"
android:shrinkColumns="1"
android:stretchColumns="*">

<TableRow>
<TextView
android:id="@+id/productLabel"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/productLabel"
android:textSize="10pt">
</TextView>

<EditText
android:id="@+id/productName"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:hint="@string/productTextHolder"
android:inputType="textPersonName" >
</EditText>
</TableRow>
</TableLayout>
</ScrollView>

<LinearLayout // This Layout is not being displayed
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="1"
android:gravity="bottom"
android:orientation="horizontal" >

<Button
android:id="@+id/buttonSaveProduct"
style="?android:attr/buttonStyleSmall"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
android:layout_width="0dip"
android:layout_weight="1"
android:layout_height="50dp"
android:layout_gravity="bottom"
android:text="@string/saveProduct" />
</LinearLayout>
</LinearLayout>

最佳答案

如果您正在为 LinearLayout 的子项使用权重属性,请确保为每个子项都定义它,否则您可以获得有趣的输出。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">

<TextView
android:id="@+id/registerProductTitle"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_marginTop="20dip"
android:layout_marginBottom="20dip"
android:gravity="center"
android:text="@string/registerProductTitle"
android:layout_weight="0.25"
android:textSize="12pt">
</TextView>

<ScrollView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.5"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip">

<TableLayout
android:id="@+id/mainTable"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
android:paddingLeft="3dip"
android:paddingRight="3dip"
android:shrinkColumns="1"
android:stretchColumns="*">

<TableRow>
<TextView
android:id="@+id/productLabel"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/productLabel"
android:textSize="10pt">
</TextView>

<EditText
android:id="@+id/productName"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:hint="@string/productTextHolder"
android:inputType="textPersonName" >
</EditText>
</TableRow>
</TableLayout>
</ScrollView>

<LinearLayout
android:layout_weight="0.5"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="1"
android:gravity="bottom"
android:orientation="horizontal" >

<Button
android:id="@+id/buttonSaveProduct"
style="?android:attr/buttonStyleSmall"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
android:layout_width="0dip"
android:layout_weight="1"
android:layout_height="50dp"
android:layout_gravity="bottom"
android:text="@string/saveProduct" />
</LinearLayout>
</LinearLayout>

我为下面的 LinearLayout 和上面的 TextView 添加了权重。

在此处查看更多信息:Android Developers | LinerLayout

关于android - 设置 ScrollView 权重使 View 不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24355226/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com