gpt4 book ai didi

android - 无法使 AppBarLayout 透明

转载 作者:行者123 更新时间:2023-12-04 02:59:43 27 4
gpt4 key购买 nike

我想在我的应用中使用透明的AppBarLayout效果,应该很容易。

只要让 AppBarLayout "@null""@android:color:transparent"background 应该可以,但事实是我错了。

我在 AppBarLayout 中有奇怪的阴影。

AppBarLayout background is not transparent

我的布局 xml:

   <android.support.design.widget.CoordinatorLayout 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"
android:fitsSystemWindows="true">

<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@null">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways" />

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


</android.support.design.widget.CoordinatorLayout>

Activity 代码

   public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
getWindow().setBackgroundDrawableResource(R.drawable.bg_005);
setTranslucent(this);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
WindowManager.LayoutParams localLayoutParams = getWindow().getAttributes();
localLayoutParams.flags = (WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS | localLayoutParams.flags);
}
}

public static void setTranslucent(Activity activity) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
View decorView = activity.getWindow().getDecorView();
int option = View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
| View.SYSTEM_UI_FLAG_LAYOUT_STABLE;
decorView.setSystemUiVisibility(option);
activity.getWindow().setStatusBarColor(Color.TRANSPARENT);
}
}
}

Activity 主题风格"Theme.AppCompat.Light.NoActionBar"

有人知道 AppBarLayout transparent 不起作用的原因吗?

最佳答案

遇到同样问题的人,这里是解决方案:

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
appBarLayout.setOutlineProvider(null);
}

在AppBarLayout的源码中找到了端倪

if (Build.VERSION.SDK_INT >= 21) {
// Use the bounds view outline provider so that we cast a shadow, even without a
// background
ViewUtilsLollipop.setBoundsViewOutlineProvider(this);
.....
}

源代码中的注释给出了我们得到阴影的确切原因。

关于android - 无法使 AppBarLayout 透明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50277982/

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