Выровнять FrameLayout внутри ConstraintLayout снизу
Я хочу макет над видом recycler в нижней части экрана (например,кадр), так что даже когда этот макет виден, я все еще могу прокручивать вид recycler позади него.Поэтому я хочу выровнять макет кадра в нижней части экрана и сделать его видимым и невидимым в соответствии с требованием. Вот мой код.
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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="com.protossoft.root.aesencryption.MainActivity">
<ListView
android:layout_width="match_parent"
android:id="@+id/listView"
android:layout_height="match_parent">
</ListView>
<!-- <RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">-->
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="443dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:gravity="center"
android:orientation="horizontal">
<ImageView
android:id="@+id/deviceNumberImage"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.2"
android:src="@android:drawable/btn_default" />
<TextView
android:id="@+id/deviceNumber"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.8"
android:text="990000862471854" />
</LinearLayout>
</FrameLayout>
<!-- </RelativeLayout>-->
у меня нет слишком много идей о макете ограничений, но когда я перемещаю представление внизу из редактора, оно использует свойство как
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="443dp"
Я хочу достичь того же с некоторым свойством, как align_parentBottom. Но ни одно из свойств не доступно для использования.Что мне нужно сделать, чтобы макет рамки был виден внизу и вверху представления recycler одновременно ? Спасибо :)