创建类似Google新闻的工具栏

时间:2019-02-26 20:30:07

标签: android android-layout google-news

我正在尝试创建一个类似于Google新闻的android工具栏,但是我是Android的新手,我需要一些帮助!

Google新闻工具栏: Please edit to show image

为此,我尝试了以下代码来创建自定义工具栏:

<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar_top"
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:minHeight="?attr/actionBarSize"
    android:background="#fff"
    app:theme="@style/AlertDialog.AppCompat.Light" >
    <SearchView
        android:id="@+id/searchView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:iconifiedByDefault="true"
        android:queryHint="Search"
        app:showAsAction="ifRoom|collapseActionView"
        android:layout_centerHorizontal="true" />

    <TextView
        android:id="@+id/toolbar_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="Anime"
        tools:layout_editor_absoluteX="153dp"
        tools:layout_editor_absoluteY="19dp" />


    <ImageButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="12dp"
        android:layout_gravity="right"
        android:background="#fff"
        android:src="@drawable/menu_vertical"/>

</android.support.v7.widget.Toolbar>

我要执行的操作是单击工具栏的搜索图标以搜索项目。同样,单击设置以显示选项列表。我有一个使用Firestore和回收视图的列表。

某人可以帮忙进行搜索吗?

提前谢谢!

0 个答案:

没有答案