簡體   English   中英

Kotlin Android Studio布局

[英]kotlin Android studio tablayout

  • 問題1)如何刪除TabLayout的邊框線?
  • 問題2)如何為操作欄圖標設置填充?

在此處輸入圖片說明

這里是activity_main.xml中的代碼:

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/bg2"
    android:orientation="vertical">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/colorTransparent"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabIndicatorColor="@android:color/transparent"
            app:tabIndicatorHeight="0dp"
            app:tabPaddingStart="0dp"
            app:tabPaddingEnd="0dp"
            app:tabGravity="fill"
            app:tabMode="fixed" />

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

    <android.support.v4.view.ViewPager
        android:id="@+id/viewpager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />

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

這里是我在Main_Activity.kt文件中編寫的代碼:

//動作欄

 val actionBar = supportActionBar
actionBar!!.setDisplayShowHomeEnabled(true)

actionBar.setBackgroundDrawable(ColorDrawable(Color.parseColor("#00FFFFFF")))
actionBar.setIcon(R.drawable.title)
actionBar.setDisplayShowTitleEnabled(false)
  1. 您可以為操作欄創建自定義布局,以使您可以控制圖標的外觀。 但是,由於這樣做會遇到數百萬的問題,我是否可以建議您從使用ActionBar轉到API 21中引入的后繼Toolbar ,您應該使用它:

https://guides.codepath.com/android/Using-the-App-ToolBar

您可以輕松地在CoordinatorLayout引入完全可自定義的工具欄,並借助設計庫來完成一些很酷的事情。

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@android:color/background_light"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    <android.support.v7.widget.Toolbar
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:contentInsetStart="0dp">

        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/qpon_drawable"
                android:layout_margin="20dp"
                android:layout_gravity="center"/>
        </FrameLayout>
    </android.support.v7.widget.Toolbar>

    <android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:tabIndicatorColor="@android:color/transparent"
        app:tabIndicatorHeight="0dp"
        app:tabPaddingStart="0dp"
        app:tabPaddingEnd="0dp"
        app:tabGravity="fill"
        app:tabMode="fixed" />

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

在此處輸入圖片說明

我可以添加任何所需的邊距,並且使用app:contentInsetStart="0dp"它沒有開始填充。 您可以在代碼中將工具欄添加為支持操作欄:

    // Find the toolbar view inside the activity layout
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    // Sets the Toolbar to act as the ActionBar for this Activity window.
    // Make sure the toolbar exists in the activity and is not null
    setSupportActionBar(toolbar);
  1. AppBarLayout的背景色設置為透明時,我也遇到邊框問題:

在此處輸入圖片說明

當我將AppBarLayout's背景設置為與背景相同的顏色時,它似乎在邊緣上繪制,邊框消失了。 請記住,由於它位於Viewpager內容的上方,因此它會在底部自動為其提供陰影:

 <android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    <!-- This is what you want to change !-->
    android:background="@android:color/background_light"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

在此處輸入圖片說明

側面不再有邊框邊緣。 我不太清楚為什么會這樣做,如果您不對它上色,這似乎是自然形式的卡片布局。

希望能幫助到你。 無論您采用何種理由,都請嘗試更改為工具欄,我認為這是唯一正確的答案!

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM