gpt4 book ai didi

android - ScrollView 无法显示最后一个元素

转载 作者:太空宇宙 更新时间:2023-11-03 11:47:50 27 4
gpt4 key购买 nike

我正在像这样在 android studio 中制作一个简单的布局:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context="hisoka.poipo.com.wishtleblower.KorupsiActivity"
android:scrollIndicators="right"
android:fillViewport="true"
android:layout_weight="1"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#F0FFFF"
android:layout_marginTop="@dimen/topMargin"
android:layout_marginBottom="@dimen/bottomMargin"
android:layout_marginLeft="@dimen/leftMargin"
android:layout_marginRight="@dimen/rightMargin"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Keterangan :"
android:textStyle="bold"
android:layout_centerInParent="true"/>

<EditText
android:layout_width="match_parent"
android:layout_height="60dp"
android:inputType="textMultiLine"
android:ems="10"
android:background="@drawable/box"
android:id="@+id/ket_et" />
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#B0E0E6"
android:layout_marginTop="@dimen/topMargin"
android:layout_marginBottom="@dimen/bottomMargin"
android:layout_marginLeft="@dimen/leftMargin"
android:layout_marginRight="@dimen/rightMargin"
android:orientation="vertical">
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Terduga :"
android:layout_weight="1"
android:textStyle="bold"
android:layout_margin="4dip"
/>

<TextView
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:text="Nama :"
android:layout_weight="1"
android:layout_margin="4dip"
android:layout_width="wrap_content"
/>
<EditText
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/box"
android:layout_margin="4dip"
android:layout_width="match_parent"
/>

<TextView
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:text="Jabatan :"
android:layout_weight="1"
android:layout_margin="4dip"
android:layout_width="wrap_content"
/>
<EditText
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/box"
android:layout_margin="4dip"
android:layout_width="match_parent"
/>

<TextView
android:gravity="center_vertical"
android:text="Klasifikasi Jabatan :"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:layout_margin="4dip"
android:layout_weight="1"
android:layout_width="wrap_content"
/>

<Spinner
android:id="@+id/korupsiSpinnera"
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

<TextView
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:text="Nama :"
android:layout_weight="1"
android:layout_margin="4dip"
android:layout_width="wrap_content"
/>
<EditText
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/box"
android:layout_margin="4dip"
android:layout_width="match_parent"
/>
<TextView
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:text="Jabatan :"
android:layout_weight="1"
android:layout_margin="4dip"
android:layout_width="wrap_content"
/>
<EditText
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/box"
android:layout_margin="4dip"
android:layout_width="match_parent"
/>

<TextView
android:gravity="center_vertical"
android:text="Klasifikasi Jabatan :"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:layout_margin="4dip"
android:layout_weight="1"
android:layout_width="wrap_content"
/>
<Spinner
android:id="@+id/korupsiSpinnerb"
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#B0E0E6"
android:layout_marginTop="@dimen/topMargin"

android:layout_marginLeft="@dimen/leftMargin"
android:layout_marginRight="@dimen/rightMargin"
android:orientation="vertical">
<TextView
android:gravity="center_vertical"
android:text="Lampiran :"
android:textStyle="bold"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:layout_margin="4dip"
android:layout_weight="1"
android:layout_width="wrap_content"
/>
<TextView
android:gravity="center_vertical"
android:text="Nama File "
android:textStyle="bold"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:layout_margin="4dip"
android:layout_weight="1"
android:layout_width="wrap_content"
/>
<TextView
android:gravity="center_vertical"
android:text="Rfounder "
android:textStyle="bold"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:layout_margin="4dip"
android:layout_weight="1"
android:layout_width="wrap_content"
/>
<TextView
android:gravity="center_vertical"
android:text="Keterangan "
android:textStyle="bold"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:layout_margin="4dip"
android:layout_weight="1"
android:layout_width="wrap_content"
/>
<TextView
android:gravity="center_vertical"
android:text="CEO "
android:textStyle="bold"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:layout_margin="4dip"
android:layout_weight="1"
android:layout_width="wrap_content"
/>
<TextView
android:gravity="center_vertical"
android:text="Size "
android:textStyle="bold"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:layout_margin="4dip"
android:layout_weight="1"
android:layout_width="wrap_content"
/>
<TextView
android:gravity="center_vertical"
android:text="36 KB "
android:textStyle="bold"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:layout_margin="4dip"
android:layout_weight="1"
android:layout_width="wrap_content"
/>
<TextView
android:gravity="center_vertical"
android:text="Delete "
android:textStyle="bold"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:layout_margin="4dip"
android:layout_weight="1"
android:layout_width="wrap_content"
/>
<TextView
android:gravity="center_vertical"
android:text="X"
android:textStyle="bold"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:layout_margin="4dip"
android:layout_weight="1"
android:layout_width="wrap_content"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:text="Add File"
/>
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#B0E0E6"
android:layout_marginTop="@dimen/topMargin"
android:layout_marginBottom="@dimen/bottomMargin"
android:layout_marginLeft="@dimen/leftMargin"
android:layout_marginRight="@dimen/rightMargin"
android:gravity="bottom"
android:orientation="vertical">
<TextView
android:gravity="center_vertical"
android:text="Kirim Laporan"
android:textStyle="bold"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:layout_margin="4dip"
android:layout_weight="1"
android:layout_width="wrap_content"
/>
<TextView
android:gravity="center_vertical"
android:text="Captcha"
android:textStyle="bold"
android:layout_height="wrap_content"
android:fontFamily="sans-serif-condensed"
android:layout_margin="4dip"
android:layout_weight="1"
android:layout_width="wrap_content"
/>
<EditText
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/box"
android:layout_margin="4dip"
android:layout_width="wrap_content"
android:ems="7"
/>
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New CheckBox"
android:id="@+id/checkBox"
android:layout_weight="1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:text="Submit"
android:gravity="bottom"
/>
</LinearLayout>

</LinearLayout>

</ScrollView>

在 android studio 中,我可以看到最后一个元素,如下所示: preview in android studio但是当我在我的真实设备上运行它时,无法显示最后一个元素,我的最后一个按钮丢失了: real device我浏览了一些页面并说只需添加

android:fillViewport="true"

到 ScrollView 。但这并没有解决我的问题....我添加了另一个 xml 标签但仍然没有...

最佳答案

感谢二先生的建议。 Arjun,我终于得到了答案......我把这个放在

android:paddingBottom="57dp"

到 scrollview... 并且它是固定的... :)

enter image description here

关于android - ScrollView 无法显示最后一个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37290307/

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