gpt4 book ai didi

java - 工具栏上移

转载 作者:行者123 更新时间:2023-11-30 01:02:36 24 4
gpt4 key购买 nike

工具栏上移

http://i.stack.imgur.com/QCXYs.png

如何制作法线?

如何制作透明工具栏?我使用 mike penz 的抽屉和标签activity_main.xml

<?xml version="1.0" encoding="utf-8"?>


<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_activity_DrawerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:background="?attr/colorPrimary" />

<su.gamepoint.opendomofon.pro.sliding.SlidingTabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="2dp"
android:background="@color/ColorPrimary" />

<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_weight="1">
</android.support.v4.view.ViewPager>

</LinearLayout>
</android.support.v4.widget.DrawerLayout>

最佳答案

有两种方法。

首先通过xml:您可以为不同的API级别设置不同的尺寸,并在您的AppBar中设置padding。

其次通过 java:创建如下所示的方法

 public int getStatusBarHeight() {
int result = 0;
int resourceId = getResources().getIdentifier("status_bar_height", "dimen", "android");
if (resourceId > 0) {
result = getResources().getDimensionPixelSize(resourceId);
}
return result;
}

然后在您的 onCreate() 中:

   set this padding on your Appbar.

关于java - 工具栏上移,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39237693/

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