我已经添加了recyclelerview以及浮动操作按钮,但是当我在移动浮动按钮中旋转屏幕时,看不到只有recyclerview可见。如何使其可见。我的代码如下:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:background="#DCDCDC">
<android.support.v7.widget.RecyclerView
android:id="@+id/CustomerList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="10dp"
android:layout_weight="1"
android:layout_marginLeft="20dp"
android:layout_marginStart="20dp"
android:layout_marginBottom="20dp"
android:layout_marginRight="20dp"
android:layout_marginEnd="20dp"
android:layout_marginTop="20dp"
android:background="#FFF"
/>
<android.support.design.widget.FloatingActionButton
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/nextToThird"
app:backgroundTint="@color/colorgreen"
android:src="@drawable/right"
android:layout_marginStart="260dp"
android:layout_marginLeft="260dp"
android:layout_marginTop="450dp"
android:padding="0dp"/>
</android.support.design.widget.CoordinatorLayout>
答案 0 :(得分:0)
使用相对布局,它可以在方向横向和纵向中使用 像这样
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.ncrypted.fontdemo.MainActivity">
<android.support.v7.widget.RecyclerView
android:id="@+id/CustomerList"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#FFF" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/nextToThird"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_margin="20dp" />
</RelativeLayout>
在有任何疑问时问我