android.support.v7.widget.Toolbar无法正常运行

时间:2018-07-08 10:30:21

标签: java android toolbar

enter image description here

如您所愿,工具栏未在设计部分正确显示。它的大小是不可改变的。为它设置的属性不会显示在设计字段中。属性,例如background,color和...

xml代码:

<?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=".MainActivity">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar2"
        android:layout_width="368dp"
        android:layout_height="wrap_content"
        android:background="?attr/colorPrimary"
        android:minHeight="?attr/actionBarSize"
        android:theme="?attr/actionBarTheme"
        tools:layout_editor_absoluteX="8dp"
        tools:layout_editor_absoluteY="49dp" />

</android.support.constraint.ConstraintLayout>

2 个答案:

答案 0 :(得分:0)

Styles.xml <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> 添加此

MainActivity.xml

<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/green">

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

MainActivity.java

Toolabar mToolbar = (Toolbar) findViewById(R.id.appbar);

setSupportActionBar(mToolbar);
        getSupportActionBar().setTitle("Name on Toolabar");
        mToolbar.setTitleTextColor(Color.WHITE);
        getSupportActionBar().setDisplayHomeAsUpEnabled(true);

答案 1 :(得分:0)

我这样做是为了我的项目和作品:
首先,您必须在res的样式文件中添加此样式

for s in students:
    s.age += 3

在activity_main.xml中:

<style name="ToolBarTheme" parent="ThemeOverlay.AppCompat.Light">
        <item name="android:textColorPrimary">@android:color/white</item>
        <item name="android:textColorSecondary">@android:color/white</item>
    </style>

然后确保您的<android.support.v7.widget.Toolbar android:layoutDirection="rtl" android:elevation="8dp" android:id="@+id/ToolBarMain" android:background="?attr/colorPrimary" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" app:theme="@style/ToolBarTheme" tools:ignore="UnusedAttribute"> </android.support.v7.widget.Toolbar> compileSdkVersion不等于28,例如:

targetSdkVersion