简体   繁体   中英

Android: TabLayout how set height = 0 programatically?

Here my xml of TabLayout :

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
    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.support.design.widget.TabLayout
         android:id="@+id/tabLayout"
         android:layout_width="0dp"
         android:layout_height="wrap_content"
         android:layout_marginTop="20dp"
         android:background="@android:color/white"
         android:minHeight="@dimen/standard_min_height_container"
         app:layout_constraintLeft_toLeftOf="parent"
         app:layout_constraintRight_toRightOf="parent"
         app:tabGravity="fill"
         app:tabIndicatorHeight="0dp"
         app:tabMode="fixed"
         app:tabSelectedTextColor="@color/colorPrimaryDark"/>

<ViewPager
    android:id="@+id/customViewPager"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    app:layout_constraintLeft_toLeftOf="@+id/tabLayout"
    app:layout_constraintRight_toRightOf="@+id/tabLayout"
    app:layout_constraintTop_toBottomOf="@+id/tabLayout" />

</android.support.constraint.ConstraintLayout>

How I can change TabLayout.android:layout_height = 0 programatically.?

Try this

  • For Constraint Layout you have to change height and width by doing this simply

     tabLayout=(TabLayout)findViewById(R.id.tabLayout); ConstraintLayout.LayoutParams params = (ConstraintLayout.LayoutParams) tabLayout.getLayoutParams(); // Changes the height and width to the specified *pixels* params.height = 500; params.width = 500; tabLayout.setLayoutParams(params); 

OutPut

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM