如何将android材料io列表添加到android布局?

jrcvhitl  于 2021-06-29  发布在  Java
关注(0)|答案(0)|浏览(165)

我正在尝试用标题感知的字符串创建一个列表,右下角有一个加号按钮。应该是用谷歌的资料。
我的问题是,我希望名单从标题结束的那一刻开始。我不知道怎么解决。有什么线索吗?谢谢:d

<?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=".RouteChoice"
    android:orientation="vertical">

    <androidx.coordinatorlayout.widget.CoordinatorLayout

        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <com.google.android.material.appbar.MaterialToolbar
            android:id="@+id/title"
            style="@style/Widget.MaterialComponents.Toolbar.Primary"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/background_color"
            app:navigationIcon="@drawable/ic_baseline_alt_route_24"
            app:title="@string/route_selection"
            app:titleTextColor="#FFFFFF" />

        <com.google.android.material.floatingactionbutton.FloatingActionButton
            android:id="@+id/floating_action_button_plus"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom|right"
            android:layout_margin="16dp"
            android:contentDescription="Adauga ruta goala"
            app:srcCompat="@drawable/ic_baseline_add_24" />

    </androidx.coordinatorlayout.widget.CoordinatorLayout>
    <ListView
        android:id="@+id/list_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</RelativeLayout>

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题