gpt4 book ai didi

android - 将 ScrollView 添加到 android 布局

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:27:40 26 4
gpt4 key购买 nike

我有一个相对布局,我想在其中添加一个 ScrollView ,问题是每当我添加 ScrollView 时,我所有相对设置的小部件都失去了它们的位置,我已经尝试了每一种可能性,但我无法正确设置 ScrollView ,有人可以帮助我吗?我想将 ScrollView 放入 xml 文件的所有元素。

新代码:

<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"
>

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff" >

<ImageButton
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="140dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_weight="0.9"
android:background="@drawable/subscribe_second_top"
android:orientation="vertical" >
</ImageButton>





<EditText
android:id="@+id/editText1"
android:layout_width="270dp"
android:layout_height="wrap_content"
android:layout_below="@+id/bebasNeueTextView1"
android:layout_centerHorizontal="true"
android:ems="10"
android:inputType="textEmailAddress" />

<TextView
android:id="@+id/bebasNeueTextView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/editText1"
android:layout_centerHorizontal="true"
android:text="THE EMAIL YOU WILL USE TO GET ALL YOUR APPS CREATED BY THE SOFT"
android:textColor="#000000"
android:textSize="7sp"
android:textStyle="bold" />

<TextView
android:id="@+id/bebasNeueTextView6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/editText2"
android:layout_centerHorizontal="true"
android:text="YOUR GOOGLE PLAY STORE ORDER NUMBER, IN ORDER TO PROVE YOU BOUG"
android:textColor="#000000"
android:textSize="7sp"
android:textStyle="bold" />

<TextView
android:id="@+id/bebasNeueTextView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/bebasNeueTextView2"
android:layout_centerHorizontal="true"
android:layout_marginTop="16dp"
android:text="ENTER YOUR PLAY STORE ORDER NUMBER"
android:textColor="#94c23e"
android:textSize="13sp"
android:textStyle="bold" />

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="80dp"
android:layout_alignParentBottom="true"
android:background="@drawable/subscribe_second_bottom"
android:paddingBottom="5dp"
android:paddingTop="30dp" >

<com.apkcreator.fwd.BebasNeueButton
android:id="@+id/finishButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:background="#94c23e"
android:paddingBottom="10dp"
android:paddingLeft="30dp"
android:paddingRight="30dp"
android:paddingTop="10dp"
android:text="FINISH"
android:textSize="18sp"
android:textStyle="bold" />
</RelativeLayout>

<TextView
android:id="@+id/bebasNeueTextView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="170dp"
android:text="ENTER YOUR EMAIL"
android:textColor="#94c23e"
android:textSize="13sp"
android:textStyle="bold" />

<EditText
android:id="@+id/editText2"
android:layout_width="270dp"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/editText1"
android:layout_below="@+id/bebasNeueTextView4"
android:ems="10"
android:layout_centerHorizontal="true">


</EditText>

</RelativeLayout>
</ScrollView>

最佳答案

检查此链接: How to add scroll bar to the Relative Layout?

您的问题可能与视口(viewport)有关,ScrollLayout 上的 android:fillViewport="true" 应该可以解决您的问题。

查看您的 xml,您可以使用垂直 LinearLayout 设置此文件,对于此用例来说要简单得多。

顺便说一句,我的建议是避免在注册、登录等用户输入时使用滚动条...您的表单仅包含 2 个字段,我相信您可以将其安排为一次全部显示在屏幕上(更好的用户体验!) .

关于android - 将 ScrollView 添加到 android 布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19397903/

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