我有一个布局,它有 3 个文本视图和一个滚动视图以及一个带有三个按钮的相对布局,现在我想要滚动时我的第二个相对布局带有滚动视图,但该相对布局始终位于最后一个文本视图下,因为我在下面给出了布局,因为我尝试了各种方法但没有成功。这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:id="@+id/scrl"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#39dad9d9"
android:padding="5dp"
android:orientation="vertical"
tools:context=".Bekhon">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textSize="20dp"
android:textStyle="bold"
android:gravity="center"
android:layout_marginTop="5dp"
android:textColor="@color/light_font"
android:shadowColor="@color/text_shadow"
android:shadowDx="10"
android:shadowDy="1"
android:shadowRadius="2"
android:id="@+id/ttl"
android:text=""
android:layout_centerHorizontal="true" />
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textSize="15dp"
android:textStyle="normal"
android:gravity="top|right"
android:id="@+id/dsc"
android:textDirection="rtl"
android:elegantTextHeight="true"
android:layout_below="@id/ttl"
android:background="@drawable/bt"
android:lineSpacingExtra="10dp"
android:layout_marginTop="10dp"
android:text=""
android:layout_centerHorizontal="true" />
湖上湖
暮色呼如
相关分类