gpt4 book ai didi

Android透明状态栏和 Action 栏

转载 作者:IT老高 更新时间:2023-10-28 13:06:31 27 4
gpt4 key购买 nike

我已经对这个主题进行了一些研究,但我找不到完整的解决方案,因此,我一步一步地尝试和错误,我终于找到了如何实现这些结果:透明或彩色ActionbarStatusbar。请参阅下面的答案。

最佳答案

在操作栏和状态栏自定义方面,我正在开发一个应用程序,该应用程序需要在具有 >= API14 的所有设备中看起来相似。我终于找到了一个解决方案,由于我花了一些时间,我会分享它以节省你的一些。我们首先使用 appcompat-21 依赖项。

透明操作栏:

values/styles.xml:

<style name="AppTheme" parent="Theme.AppCompat.Light">
...
</style>

<style name="AppTheme.ActionBar.Transparent" parent="AppTheme">
<item name="android:windowContentOverlay">@null</item>
<item name="windowActionBarOverlay">true</item>
<item name="colorPrimary">@android:color/transparent</item>
</style>

<style name="AppTheme.ActionBar" parent="AppTheme">
<item name="windowActionBarOverlay">false</item>
<item name="colorPrimary">@color/default_yellow</item>
</style>


values-v21/styles.xml:

<style name="AppTheme" parent="Theme.AppCompat.Light">
...
</style>

<style name="AppTheme.ActionBar.Transparent" parent="AppTheme">
<item name="colorPrimary">@android:color/transparent</item>
</style>

<style name="AppTheme.ActionBar" parent="AppTheme">
<item name="colorPrimaryDark">@color/bg_colorPrimaryDark</item>
<item name="colorPrimary">@color/default_yellow</item>
</style>

现在您可以在 AndroidManifest.xml 中使用这些主题来指定哪些 Activity 将具有透明或彩色 ActionBar:

    <activity
android:name=".MyTransparentActionbarActivity"
android:theme="@style/AppTheme.ActionBar.Transparent"/>

<activity
android:name=".MyColoredActionbarActivity"
android:theme="@style/AppTheme.ActionBar"/>

enter image description here enter image description here enter image description here enter image description here enter image description here

注意:在 API>=21 中,要使 Actionbar 透明,您还需要使 Statusbar 透明,否则将不尊重您的颜色样式并保持浅色-灰色。



透明状态栏(仅适用于 API>=19):
这很简单,只需使用以下代码:

protected void setStatusBarTranslucent(boolean makeTranslucent) {
if (makeTranslucent) {
getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
} else {
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
}
}

但你会注意到一个奇怪的结果: enter image description here

这是因为当 Statusbar 是透明的时,布局将使用它的高度。为了防止这种情况,我们只需要:

解决方案一:
将这一行 android:fitsSystemWindows="true" 添加到您想要放置在操作栏下方的任何内容的布局 View 容器中:

    ...
<LinearLayout
android:fitsSystemWindows="true"
android:layout_width="match_parent"
android:layout_height="match_parent">
...
</LinearLayout>
...

解决方案二:
在我们之前的方法中添加几行:

protected void setStatusBarTranslucent(boolean makeTranslucent) {
View v = findViewById(R.id.bellow_actionbar);
if (v != null) {
int paddingTop = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT ? MyScreenUtils.getStatusBarHeight(this) : 0;
TypedValue tv = new TypedValue();
getTheme().resolveAttribute(android.support.v7.appcompat.R.attr.actionBarSize, tv, true);
paddingTop += TypedValue.complexToDimensionPixelSize(tv.data, getResources().getDisplayMetrics());
v.setPadding(0, makeTranslucent ? paddingTop : 0, 0, 0);
}

if (makeTranslucent) {
getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
} else {
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
}
}

其中 R.id.bellow_actionbar 将是我们想要放置在 Actionbar 下方的任何内容的布局容器 View ID:

...
<LinearLayout
android:id="@+id/bellow_actionbar"
android:layout_width="match_parent"
android:layout_height="match_parent">
...
</LinearLayout>
...

enter image description here

就是这样,它认为我没有忘记什么。在这个例子中,我没有使用 Toolbar 但我认为它会得到相同的结果。这就是我自定义 Actionbar 的方式:

@Override
protected void onCreate(Bundle savedInstanceState) {
View vg = getActionBarView();
getWindow().requestFeature(vg != null ? Window.FEATURE_ACTION_BAR : Window.FEATURE_NO_TITLE);

super.onCreate(savedInstanceState);
setContentView(getContentView());

if (vg != null) {
getSupportActionBar().setCustomView(vg, new ActionBar.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
getSupportActionBar().setDisplayShowCustomEnabled(true);
getSupportActionBar().setDisplayShowHomeEnabled(false);
getSupportActionBar().setDisplayShowTitleEnabled(false);
getSupportActionBar().setDisplayUseLogoEnabled(false);
}
setStatusBarTranslucent(true);
}

注意:这是一个扩展ActionBarActivity
抽象类希望对您有所帮助!

关于Android透明状态栏和 Action 栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29907615/

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