gpt4 book ai didi

java - Android 工具栏设置背景颜色为半透明颜色

转载 作者:行者123 更新时间:2023-12-01 07:49:15 27 4
gpt4 key购买 nike

是否可以将 Google map 顶部的工具栏背景颜色设置为半透明颜色。

我尝试了两件事:

XML:

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="#963f51b5"
app:popupTheme="@style/AppTheme.PopupOverlay"/>

Java:

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);

setSupportActionBar(toolbar);
getSupportActionBar().setTitle(distanceText);

getSupportActionBar().setBackgroundDrawable(new ColorDrawable(Color.parseColor("#963f51b5")));

似乎都不起作用,这让我觉得这是不可能的?

最佳答案

如果将 AppBarLayout 的背景设置为透明,它应该可以工作。

例如:

<?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"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:id="@+id/content_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<!--Add the rest of your views in here-->
</LinearLayout>

<!--Needs to be at the bottom so it's shown over all the other views-->
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="#963f51b5"
app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.AppBarLayout>
</RelativeLayout>>

结果:

enter image description here

关于java - Android 工具栏设置背景颜色为半透明颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41706819/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com