0

假设您没有修改 style.xml 中的任何属性,Android Studio 中的布局编辑器将操作栏显示为:

在此处输入图像描述

通过调整操作栏的样式,我可以做一些事情,比如调整它的背景颜色。

但是,我使用的ActionBar是一个使用自定义布局的Toolbar,不能简单地通过调整action bar的属性来表达,如下图。

在此处输入图像描述

在运行时将上述布局应用到操作栏并不难。(更改自定义视图,或将 AppTheme 应用到 NoActionBar,然后设置 SupportActionBar)

我真正想要的是具有这些自定义布局的 AppBar 将打印出我正在处理的项目中的所有 xml,但到目前为止我还没有找到正确的答案。

这是Android工作室不支持的操作吗?

4

1 回答 1

0

您可以通过 ToolBar 和 FrameLayouts 实现此目的,

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/coordinator_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="?actionBarSize">

    <android.support.v7.widget.Toolbar
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="?attr/colorPrimary"
        app:contentInsetStart="0dp">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="horizontal">

            //TextView
            //ImageView
            // etc

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


<FrameLayout
    android:id="@+id/main_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginTop="?actionBarSize">
</FrameLayout>

如上所述组织您的主机活动布局并在 main_container 中加载片段

于 2018-08-30T07:39:20.410 回答