Alexei
Alexei

Reputation: 15726

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.?

Upvotes: 0

Views: 1183

Answers (1)

Vishal Yadav
Vishal Yadav

Reputation: 1024

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

enter image description here

Upvotes: 1

Related Questions