web-dev-qa-db-ja.com

RecyclerViewの下にボタンがあるRelativeLayoutを追加します

RecyclerViewの下にRelativeLayoutを追加する必要があり、TOTAL(R.id.total_amount_tv)の下のボタンが表示されないことを除いて、追加できました。

enter image description here

アイテムを簡単にスクロールでき、RelativeLayoutには影響しません。ボタンが表示される必要があります。

<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="wrap_content"
    Android:background="@Android:color/white"
    Android:weightSum="1">

    <Android.support.v7.widget.RecyclerView
        Android:id="@+id/order_recycler"
        Android:layout_width="match_parent"
        Android:layout_height="wrap_content"
        Android:layout_marginBottom="40dp"
        tools:context=".ShoppingCartActivity" />

    <RelativeLayout
        Android:layout_width="match_parent"
        Android:layout_height="match_parent"
        Android:layout_marginBottom="10dp"
        Android:layout_marginLeft="10dp"
        Android:layout_marginRight="10dp">

        <TextView
            Android:id="@+id/total_tv"
            Android:layout_width="wrap_content"
            Android:layout_height="wrap_content"
            Android:layout_alignParentBottom="true"
            Android:layout_alignParentLeft="true"
            Android:layout_alignParentStart="true"
            Android:text="@string/total"
            Android:textSize="20sp"
            Android:textStyle="bold|italic" />

        <TextView
            Android:id="@+id/total_amount_tv"
            Android:layout_width="wrap_content"
            Android:layout_height="wrap_content"
            Android:layout_alignParentBottom="true"
            Android:layout_alignParentEnd="true"
            Android:layout_alignParentRight="true"
            Android:layout_alignTop="@+id/total_tv"
            Android:textSize="20sp"
            Android:textStyle="bold|italic" />

        <Button
            Android:layout_width="wrap_content"
            Android:layout_height="wrap_content"
            Android:layout_alignParentBottom="true"
            Android:layout_below="@+id/total_amount_tv"
            Android:layout_marginTop="51dp"
            Android:background="@color/accent"
            Android:onClick="onClickSendOrder"
            Android:text="@string/order_btn"
            Android:textColor="@Android:color/white"
            Android:textSize="20sp" />
    </RelativeLayout>

</RelativeLayout>
10
Helenesh

画面を2つの部分に分割する必要があります。1つはRecyclerviewを表示するためのもので、もう1つはRelativeLayout用です。

 <LinearLayout
    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="@Android:color/white"
    Android:orientation="vertical"
    Android:weightSum="10">

     <Android.support.v7.widget.RecyclerView
        Android:id="@+id/order_recycler"
        Android:layout_weight = "8.5"
        Android:layout_width="match_parent"
        tools:context=".ShoppingCartActivity" />

     <RelativeLayout
        Android:layout_weight = "1.5"
        Android:layout_width="match_parent"
        Android:layout_height="0dp"
        Android:layout_marginRight="10dp">

         <TextView
            Android:id="@+id/total_tv"
            Android:layout_width="wrap_content"
            Android:layout_height="wrap_content"
            Android:layout_alignParentLeft="true"
            Android:layout_alignParentStart="true"
            Android:text="Total"
            Android:textSize="20sp"
            Android:textStyle="bold|italic" />

         <TextView
            Android:id="@+id/total_amount_tv"
            Android:layout_width="wrap_content"
            Android:layout_height="wrap_content"
            Android:layout_alignParentEnd="true"
            Android:layout_alignParentRight="true"
            Android:layout_alignTop="@+id/total_tv"
            Android:textSize="20sp"
            Android:text="Total Right"
            Android:textStyle="bold|italic" />

         <Button
            Android:layout_width="wrap_content"
            Android:layout_height="wrap_content"
            Android:layout_below="@+id/total_amount_tv"
            Android:layout_alignParentEnd="true"
            Android:layout_alignParentRight="true"
            Android:onClick="onClickSendOrder"
            Android:text="Button"
            Android:textColor="@Android:color/white"
            Android:textSize="20sp" />
     </RelativeLayout>

</LinearLayout>

これにより、次の結果が生成されます

Picture

9
Fahad Rehman
Android:layout_alignParentBottom="true"

これが原因である可能性があります。両方のTextViewは、親のRelativeLayoutの下部に配置されます。これはボタンのための余地を残しません。

2
Code-Apprentice
<RelativeLayout
    Android:layout_width="match_parent"
    Android:layout_height="match_parent">

    <Android.support.v7.widget.RecyclerView
        Android:id="@+id/downline_listview"
        Android:layout_width="match_parent"
        Android:layout_height="match_parent"
        Android:layout_above="@+id/lin_result"
        Android:layout_marginTop="5dp" />

    <LinearLayout
        Android:id="@+id/lin_result"
        Android:layout_width="match_parent"
        Android:layout_height="wrap_content"
        Android:layout_alignParentBottom="true"
        Android:background="#f8ffffff"
        Android:orientation="vertical"
        Android:paddingBottom="10dp">

        <View
            Android:layout_width="match_parent"
            Android:layout_height="0.5dp"
            Android:layout_marginBottom="5dp"
            Android:background="#999898" />

        <TextView
            Android:id="@+id/text_total_rupees"
            Android:layout_width="wrap_content"
            Android:layout_height="wrap_content"
            Android:layout_gravity="center_vertical"
            Android:layout_weight="1"
            Android:paddingLeft="10dp"
            Android:text="100" 
         Android:textAppearance="@style/TextAppearance.AppCompat.Medium" />
       </LinearLayout>
    </RelativeLayout>  
1
Ashish