gpt4 book ai didi

java - 文本和按钮被覆盖......我希望按钮固定在 TextView 的底部

转载 作者:行者123 更新时间:2023-12-02 03:27:58 26 4
gpt4 key购买 nike

enter image description here我已经上传了问题的截图,请检查... TextView 中的文本和按钮相互重叠。我已经使用 html 作为文本和滚动条......请帮助!!!!!

这是我的代码:

xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/images"
tools:context="com.example.acer.aartisangrah.alaganraya">

<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">
<TextView
android:id="@+id/textView4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceLarge" />
</ScrollView>

<Button
android:id="@+id/b2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:onClick="decrease"
android:text="Decrease" />

<Button
android:id="@+id/b1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:onClick="increase"
android:text="Increase" />
</RelativeLayout>

这里的 TextView 我使用了 HTML

代码:

tv=(TextView)findViewById(R.id.textView4);
tv.setTextSize((float) 18.0);
tv.setText(Html.fromHtml(getString(R.string.five)));

请注意, TextView 中的文本大小可以增大或减小......

最佳答案

这是因为您没有指定 View 的对齐顺序。

例如:您可以使用 android:layout_above="@+id/btn"android:layout_below="@+id/scrollbar 来排列 View 。

关于java - 文本和按钮被覆盖......我希望按钮固定在 TextView 的底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38533500/

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