Как установить поля панели инструментов программно с помощью Kotlin - PullRequest
0 голосов
/ 09 июня 2019

Я хочу, чтобы строка состояния была заполнена градиентным фоном моей панели действий. Поэтому я искал некоторые статьи и сумел это сделать. Но я знаю, что для цветной строки состояния требуется уровень 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 голосов
/ 09 июня 2019

Вы можете создать альтернативный макет для уровня API> = 21, создав каталог res/layout-v21, в котором вы создадите файл с именем 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> 
0 голосов
/ 09 июня 2019

Вы должны использовать 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
...