尽管设置了属性,但缺少AppCompat工具栏高程(使用RecyclerView)

时间:2018-11-05 14:44:38

标签: java android xml android-fragments android-toolbar

由于某些原因,我的$filter = Read-Host -Prompt "Please filter to find the correct resource group" Get-AzResourceGroup | Where-Object { $_.ResourceGroupName -eq $filter } 不会为高程蒙上阴影。我什至尝试使用Java,但仍然无法正常工作。

有什么想法为什么不能达到预期效果? 我的应用程序不支持棒棒糖之前的版本(最低API为24)。

活动XML

Connect-AzureRmAccount
(get-azurermresourcegroup).ResourceGroupName 
$filter = Read-Host -Prompt "Please filter to find the correct resource group" 
$RGName = get-azurermresourcegroup | Where-Object { $_.ResourceGroupName -match $filter } 
$RGName.resourcegroupname

工具栏XML

Toolbar

活动课程

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:id="@+id/masterToolbar"
        android:layout_width="match_parent"
        android:layout_height="?actionBarSize">

        <include layout="@layout/toolbar_layout"
            android:layout_width="match_parent"
            android:layout_height="?actionBarSize"/>
    </LinearLayout>

    <RelativeLayout
        android:id="@+id/master_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
</LinearLayout>

2 个答案:

答案 0 :(得分:1)

您在android:background中缺少Toolbar

示例:

<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/my_toolbar"
    android:elevation="4dp"
    android:background="?attr/colorPrimary"
    android:layout_width="match_parent"
    android:layout_height="?android:attr/actionBarSize"
    android:minHeight="?android:attr/actionBarSize">

注意::要将高程应用于任何视图,它需要有背景。


编辑: 由于您的应用具有最低SDK 24,因此您可以使用translationZ属性。

答案 1 :(得分:1)

删除活动xml中的线性布局以及width和height属性。您只需要include标签。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <include layout="@layout/toolbar_layout" />
    </android.support.design.widget.AppBarLayout>

    <RelativeLayout
    android:id="@+id/master_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>
</LinearLayout>

在您的工具栏xml中,尝试使用app:elevation,因为您正在使用supportActionBar支持库。

<?xml version="1.0" encoding="utf-8"?>
<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/my_toolbar"
app:elevation="4dp"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:minHeight="?android:attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    <LinearLayout
    android:id="@+id/mytoolbar_textlayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center_vertical"
    android:orientation="vertical">

    <TextView
        android:id="@+id/mytoolbar_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        style="@android:style/TextAppearance.Material.Widget.ActionBar.Title"/>
    </LinearLayout>
</android.support.v7.widget.Toolbar>