我想在不更改主要相对布局的情况下向我的相对布局添加一个scrollView。
我试图在xml的代码的不同位置添加一个scrollView,但是它不起作用,而且元素的位置变得混乱。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:layout_height="match_parent"
android:background="@drawable/green"
tools:context="com.example.ahmedashrafhamza.GP.MainActivity">
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/listView"
android:divider="@null"
android:dividerHeight="0dp"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<LinearLayout
android:id="@+id/ll_send_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="horizontal" >
<EditText
android:id="@+id/editMessage"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_gravity="center_vertical|center_horizontal"
android:layout_weight="5"
android:background="@drawable/edit_text_bubble"
android:textColor="#ffff"
android:gravity="top|left"
android:inputType="textMultiLine|textCapSentences"
android:maxLines="5"
android:minLines="3"
android:scrollHorizontally="false"
android:paddingLeft="15dp"
android:paddingRight="15dp"
android:paddingTop="10dp"
/>
<Button
android:id="@+id/buttonSend"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal"
android:gravity="center"
android:text="Send"
android:textAppearance="?android:attr/textAppearanceMedium" />
</LinearLayout>
有人可以协助吗?
答案 0 :(得分:0)
将scrollView
设为父视图,然后将RelativeLayout
作为子视图。它会工作。
请记住,scrollView不支持同级视图。
编辑 这个问题已经得到here
的回答答案 1 :(得分:0)
在布局文件中:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF" >
<TextView
android:id="@+id/Heading"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="25dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginBottom="20dp"
android:gravity="center"
android:text="TITLE"
android:textStyle="bold"
android:textSize="20sp"
android:textColor="@color/colorPrimaryDark" />
<View
android:id="@+id/Separator"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/colorAccent"
android:layout_below="@id/Heading"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginBottom="20dp" />
<TextView
android:id="@+id/ParaOne"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/Separator"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginBottom="20dp"
android:gravity="left"
android:text="1) fvfvfvfvfvfvfv fvfvfvfvfvfvfvfvvfvfv vfvfvfvfvfvfvfvfvfv "
android:textStyle="bold"
android:textSize="20sp"
android:textColor="@color/colorPrimaryDark" />
<TextView
android:id="@+id/ParaTwo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/ParaOne"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginBottom="60dp"
android:gravity="left"
android:text="2) fvvfvfvfv fvfvfvfvfvfvfv fvfvfvfvfvfvfvfvvfvfv "
android:textStyle="bold"
android:textSize="20sp"
android:textColor="@color/colorPrimaryDark" />
<TextView
android:id="@+id/ParaThree"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/ParaTwo"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginBottom="60dp"
android:gravity="left"
android:text="3) fvvfvfvfv fvfvfvfvfvfvfv fvfvfvfvfvfvfvfvvfvfv "
android:textStyle="bold"
android:textSize="20sp"
android:textColor="@color/colorPrimaryDark" />
<TextView
android:id="@+id/ParaFour"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/ParaThree"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginBottom="60dp"
android:gravity="left"
android:text="4) fvvfvfvfv fvfvfvfvfvfvfv fvfvfvfvfvfvfvfvvfvfv "
android:textStyle="bold"
android:textSize="20sp"
android:textColor="@color/colorPrimaryDark" />
</RelativeLayout>
</ScrollView>
尝试一下,让我知道。