如何使用Kotlin以编程方式设置工具栏的边距

时间:2019-06-09 11:09:42

标签: android kotlin android-actionbar margin android-toolbar

我希望状态栏充满操作栏的渐变背景。因此,我搜索了一些文章并设法做到了。但我知道彩色状态栏要求API级别21,因此我添加了检查API的条件。 在我的代码内部,我有一个工具栏,其顶部边距设置为24dp,当API级别高于21时需要此工具栏,因此如果API低于21,则需要更改顶部边距。但是我没有了解如何设置工具栏的边距

我尝试添加LayoutParams(),但不适用于工具栏。

我为操作栏有一个单独的布局(action_bar.xml),我将其包含在“主要活动”中

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

    <RelativeLayout
            android:id="@+id/appbarlayout"
            xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:design="http://schemas.android.com/apk/res-auto"
            android:background="@drawable/gradient_theme"
            android:layout_width="match_parent"
            android:fitsSystemWindows="true"
            android:layout_height="80dp">

        <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_marginTop="24dp"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                design:title="@string/app_name"
                design:titleTextColor="@android:color/white"/>

    </RelativeLayout> 

另外,我在设置内容视图后在MainActivity.kotlin中调用此函数:

fun beautifyLayout(activity:Activity,window:Window) {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {

        window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS)
        window.addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS)
        activity.findViewById<RelativeLayout>(R.id.bottom_nav).also {
            it.setPadding(0, 0, 0, getSoftButtonsBarSizePort(activity))

        }
    }
else{
//I want to remove the margin top if API level is less than 21

      val params = FrameLayout.LayoutParams(
            FrameLayout.LayoutParams.MATCH_PARENT,
            FrameLayout.LayoutParams.WRAP_CONTENT
        )
     params.topMargin = 0  
        val bar = activity.findViewById<Toolbar>(R.id.toolbar)
        bar.layoutParams = params
}
     }

这是我的主要活动:

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

<android.support.design.widget.CoordinatorLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity"
        android:id="@+id/mainContainer">

    <include layout="@layout/action_bar"/>
    <include layout="@layout/bottom_nav"/>

<RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent"
               android:paddingLeft="20dp" android:paddingRight="20dp" android:id="@+id/contentBox">
    <Button android:layout_width="match_parent" android:layout_height="wrap_content"
            android:text="@string/login"
            android:paddingTop="20dp"
            android:paddingBottom="20dp"
            android:id="@+id/testButton"
            android:layout_marginTop="100dp"
    />
</RelativeLayout>
</android.support.design.widget.CoordinatorLayout>

简而言之,如何在Kotlin中设置工具栏的边距?

2 个答案:

答案 0 :(得分:0)

您必须使用ViewGroup.MarginLayoutParams而不是FrameLayout.LayoutParams

使用此代码

val bar = activity.findViewById<Toolbar>(R.id.toolbar)
val params = bar.layoutParams as ViewGroup.MarginLayoutParams
params.topMargin = 0
bar.layoutParams = params

答案 1 :(得分:0)

您可以通过创建目录res/layout-v21来创建API级别> = 21的备用布局,在该目录中创建一个名称为action_bar.xml(与原始布局相同)的文件,并在其顶部保留空白。没有利润

res / layout-v21 / action_bar.xml

<RelativeLayout
        android:id="@+id/appbarlayout"
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:design="http://schemas.android.com/apk/res-auto"
        android:background="@drawable/gradient_theme"
        android:layout_width="match_parent"
        android:fitsSystemWindows="true"
        android:layout_height="80dp">

    <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_marginTop="24dp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            design:title="@string/app_name"
            design:titleTextColor="@android:color/white"/>

</RelativeLayout>

res / layout / action_bar.xml

<RelativeLayout
        android:id="@+id/appbarlayout"
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:design="http://schemas.android.com/apk/res-auto"
        android:background="@drawable/gradient_theme"
        android:layout_width="match_parent"
        android:fitsSystemWindows="true"
        android:layout_height="80dp">

    <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            design:title="@string/app_name"
            design:titleTextColor="@android:color/white"/>

</RelativeLayout>