Я хочу установить якорь на мой нижний лист:Android набор якоря Bottom Sheets
<!-- bottom sheets -->
<LinearLayout
android:id="@+id/bottom_sheet"
android:layout_width="match_parent"
android:layout_height="300dp"
android:orientation="vertical"
android:padding="10dp"
app:layout_behavior="@string/bottom_sheet_behavior">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="bottom sheets test! " />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:text="bottom sheets content! bottom sheets content! bottom sheets content! bottom sheets content! bottom sheets content! bottom sheets content! bottom sheets content! bottom sheets content! bottom sheets content! bottom sheets content! bottom sheets content! bottom sheets content! " />
</LinearLayout>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_email"
app:layout_anchor="@id/bottom_sheet"
app:layout_anchorGravity="bottom|end" />
добавляет FAB как прямой потомок CoordinateLayout и установить идентификатор нижнего листа к ФАБ-х layout_anchor и установите его layout_anchorGravity. Но это не работает. FAB не будет двигаться.
сделал вас реализован также java-код? – sasikumar
@sasikumar мои нижние листы отлично работают, но якорь не работает. Требуется ли привязке какой-нибудь Java-код? –