How to resize the height in Tabhost in android

TheDevMan

I would like to resize the tabhost in android. I know it is deprecated, but this has been wonderful option for me because I am using ListActivity with custom cursor Adaptor. I am not if this posible with Fragment Tabhost.

Anyways to resize the tab height:

I tried the following:

for (int i = 0; i < tabHost.getTabWidget().getTabCount(); i++) 
{
  tabHost.getTabWidget().getChildAt(i).getLayoutParams().height = 80;
 }  

It worked in few phones only. Is there any other way to solve this issue?

Thanks!

Mehul Joisar

Right now, you are setting it in pixels, you should use dp,

try to replace

tabHost.getTabWidget().getChildAt(i).getLayoutParams().height = 80;

with

tabHost.getTabWidget().getChildAt(i).getLayoutParams().height = (int) (80 * this.getResources().getDisplayMetrics().density);

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

how resize Android ListView row height

From Dev

how resize Android ListView row height

From Dev

who is the default size of android tabhost height?

From Dev

How to resize the height of a TabControl?

From Dev

How to resize height of the Dijit TimeTextBox

From Dev

How to resize height of the Dijit TimeTextBox

From Dev

How to use TabHost under android 6.0+

From Dev

How to use different Activities with TabHost Widget in Android?

From Dev

how to change font family of Tabhost in android

From Dev

How to use TabHost under android 6.0+

From Dev

android - EditText height resize based on keyboard

From Dev

android - EditText height resize based on keyboard

From Dev

Android: Resize image width and height in dip

From Dev

How to allow to resize panel content height to 0

From Dev

How to resize a div to clients viewport height?

From Dev

How to resize the width and height of SVG social icons?

From Dev

How to resize the UITableView row height in Objective C

From Dev

How to resize the width and height of SVG social icons?

From Dev

How to resize column of text to the height of page

From Java

How to Resize a Bitmap in Android?

From Dev

How to display only selected tab layout in Android created using TabHost

From Dev

Android - TabHost / TabWidget

From Dev

Nested tabhost fragment android

From Dev

Android TabHost Example

From Dev

Android tabhost with different activities

From Dev

Android Swipe in Tabhost

From Dev

TabHost on Android crashes the app

From Dev

android : tabhost not rendering tabs

From Dev

Android tabhost with different activities