文字过多时,ScrollView会掩盖我的按钮

时间:2018-07-08 23:26:22

标签: android android-scrollview android-relativelayout

我遇到了一个问题,当我有太多的文字时。 ScrollView展开并覆盖底部的按钮。我尝试使用android:layout_below和android:layout_above尝试解决此问题,但它不起作用。

我无法在LinearLayout的底部添加边距,因为我想使按钮具有响应性并根据屏幕分辨率更改大小。

这是我的XML代码

<?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:layout_weight="1"
    tools:context="app.uzzeff1.uzzef.finalapp.MainActivity">

    <LinearLayout
        android:id="@+id/adView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerInParent="true"
        android:orientation="horizontal">

    </LinearLayout>

    <Button
        android:id="@+id/btnNext"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:text="Next▶"
        android:layout_below="@+id/adView"
        android:layout_alignParentEnd="true"
        android:textSize="10sp"/>

    <LinearLayout
        android:id="@+id/containerlayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_below="@+id/btnNext"
        >


        <ScrollView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:fillViewport="true"

            >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="horizontal">


                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
                    android:textSize="80sp" />


            </LinearLayout>


        </ScrollView>

    </LinearLayout>


    <Button
        android:id="@+id/btnBack"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:layout_below="@+id/containerlayout"
        android:text="◄Back" />


</RelativeLayout>

3 个答案:

答案 0 :(得分:0)

尝试此操作,将根ViewGroup更改为LinearLayout:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical">

   <RelativeLayout
      android:id="@+id/adView"
      android:layout_width="match_parent"
      android:layout_height="wrap_content">

     <Button
        android:id="@+id/btnBack"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="16dp"
        android:layout_marginLeft="16dp"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:text="◄Back" />

      <Button
        android:id="@+id/btnNext"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="16dp"
        android:layout_marginRight="16dp"
        android:layout_alignParentEnd="true"
        android:layout_alignParentRight="true"
        android:text="Next▶"
        android:textSize="10sp" />

 </RelativeLayout>


 <LinearLayout
      android:id="@+id/containerlayout"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_alignParentLeft="true"
      android:layout_alignParentStart="true"
      android:orientation="horizontal">

      <ScrollView
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:fillViewport="true">

              <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="horizontal">

                <TextView
                   android:layout_width="match_parent"
                   android:layout_height="wrap_content"
                android:text="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
                   android:textSize="80sp" />
  </LinearLayout>
</ScrollView>

答案 1 :(得分:0)

> Try this code solved your problem.

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:id="@+id/adView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerInParent="true"
        android:orientation="horizontal"></LinearLayout>

    <Button
        android:id="@+id/btnNext"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentEnd="true"
        android:layout_alignParentRight="true"
        android:layout_below="@+id/adView"
        android:text="Next▶"
        android:textSize="10sp" />

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/btnNext">

        <Button
            android:id="@+id/btnBack"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true"
            android:text="◄Back" />

        <LinearLayout
            android:id="@+id/containerlayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

            <ScrollView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:fillViewport="true">

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="horizontal">


                    <TextView
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:text="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
                        android:textSize="80sp" />
                </LinearLayout>
            </ScrollView>

        </LinearLayout>


    </RelativeLayout>

</RelativeLayout>

答案 2 :(得分:0)

尝试使用此代码。

        cmdSave.PerformClick();
        string sqlCmd = "Update tbl_Ledger " +
                        " Set RSelected=0";
        DataAccess.ExecuteSQL(sqlCmd);

        string sqlCmd2 = "Update tbl_Ledger " +
                         " Set RSelected=1 " +
                         " where supplierid=" + this.txtSupplierID.Text + 
                         " AND  xRecDate BETWEEN '" + DateFrom.Text + "' AND    '" + DateTo.Text + "'";
        DataAccess.ExecuteSQL(sqlCmd2);



        Ledger.LedgerRep go = new Ledger.LedgerRep();
        go.supplierID = this.txtSupplierID.Text;
        go.RSelected = "1";
        go.Show();

还有其他方法可以进行正确的布局,但是我遵循您的方法,仅做了很少的更改。它将在<?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" tools:context="app.uzzeff1.uzzef.finalapp.MainActivity"> <LinearLayout android:id="@+id/adView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_centerInParent="true" android:orientation="horizontal"> </LinearLayout> <LinearLayout android:id="@+id/container_layout" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_below="@id/adView" android:orientation="vertical"> <Button android:id="@+id/btnNext" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="end" android:text="Next▶" android:textSize="10sp" /> <ScrollView android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:fillViewport="true"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" android:textSize="80sp" /> </LinearLayout> </ScrollView> <Button android:id="@+id/btnBack" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="◄Back" android:textSize="10sp" /> </LinearLayout> </RelativeLayout> 角显示NextButton,在TOP|RIGHT角显示BackButton。随您便。您可以根据需要进行更改。