Android 默认Tab标签大小及间距修改

一般来说,我都是用Android默认的Tab,但此时Android会根据你增加的Tab页面平均分配Tab标签,假如你只有两个Tab,那么长度将会很长,并且其高度略微过高,并不好看,网上解决这个问题有些是自定义Tab。我们仍然使用默认的Tab解决此问题。

 

修改前 代码、图片如下:

 

[java] view plaincopy
  1. import android.app.TabActivity;  
  2. import android.graphics.Color;  
  3. import android.os.Bundle;  
  4. import android.view.LayoutInflater;  
  5. import android.widget.TabHost;  
  6. import android.widget.TabHost.OnTabChangeListener;  
  7.   
  8. public class MyTab extends TabActivity implements OnTabChangeListener {  
  9.   
  10.     private TabHost myTabhost;  
  11.       
  12.       
  13.     @Override  
  14.     protected void onCreate(Bundle savedInstanceState) {  
  15.         // TODO Auto-generated method stub  
  16.         super.onCreate(savedInstanceState);  
  17.         myTabhost = this.getTabHost();  
  18.         // get Tabhost  
  19.         LayoutInflater.from(this).inflate(R.layout.main,  
  20.                 myTabhost.getTabContentView(), true);  
  21.         myTabhost.setBackgroundColor(Color.argb(1502270150));  
  22.   
  23.         myTabhost.addTab(myTabhost.newTabSpec("One")// make a new Tab  
  24.                 .setIndicator("查询信息", getResources().getDrawable(R.drawable.gimp))  
  25.                 // set the Title and Icon  
  26.                 .setContent(R.id.widget_layout_Blue));  
  27.         // set the layout  
  28.   
  29.         myTabhost.addTab(myTabhost  
  30.                 .newTabSpec("Two")  
  31.                 // make a new Tab  
  32.                 .setIndicator("签到",  
  33.                         getResources().getDrawable(R.drawable.mumule))  
  34.                 // set the Title and Icon  
  35.                 .setContent(R.id.widget_layout_green));  
  36.   
  37.     }  
  38.   
  39.       
  40.   
  41.     @Override  
  42.     public void onTabChanged(String tagString) {  
  43.         // TODO Auto-generated method stub  
  44.           
  45.           
  46.     }  
  47.   
  48. }  



 

 

 

下面我就如何 改变Tab标签大小及间距作出说明:

我在网上查阅文档,如果要改变此大小或者间距,必须将标签栏宽高设为 wrapContent(其他的我尚未验证):以下为修改代码及其效果:

 

 

[java] view plaincopy
  1. import android.app.TabActivity;  
  2. import android.graphics.Color;  
  3. import android.os.Bundle;  
  4. import android.view.LayoutInflater;  
  5. import android.view.View;  
  6. import android.view.ViewGroup.LayoutParams;  
  7. import android.widget.LinearLayout;  
  8. import android.widget.TabHost;  
  9. import android.widget.TabWidget;  
  10. import android.widget.TabHost.OnTabChangeListener;  
  11.   
  12. public class MyTab extends TabActivity implements OnTabChangeListener {  
  13.   
  14.     private TabHost myTabhost;  
  15.       
  16.       
  17.     @Override  
  18.     protected void onCreate(Bundle savedInstanceState) {  
  19.         // TODO Auto-generated method stub  
  20.         super.onCreate(savedInstanceState);  
  21.         myTabhost = this.getTabHost();  
  22.         // get Tabhost  
  23.         LayoutInflater.from(this).inflate(R.layout.main,  
  24.                 myTabhost.getTabContentView(), true);  
  25.         myTabhost.setBackgroundColor(Color.argb(1502270150));  
  26.   
  27.         myTabhost.addTab(myTabhost.newTabSpec("One")// make a new Tab  
  28.                 .setIndicator("查询信息", getResources().getDrawable(R.drawable.gimp))  
  29.                 // set the Title and Icon  
  30.                 .setContent(R.id.widget_layout_Blue));  
  31.         // set the layout  
  32.   
  33.         myTabhost.addTab(myTabhost  
  34.                 .newTabSpec("Two")  
  35.                 // make a new Tab  
  36.                 .setIndicator("签到",  
  37.                         getResources().getDrawable(R.drawable.mumule))  
  38.                 // set the Title and Icon  
  39.                 .setContent(R.id.widget_layout_green));  
  40.   
  41.         // 首先得到标签栏  
  42.         TabWidget tabWidget = myTabhost.getTabWidget();  
  43.         //设置标签栏宽高为 WRAP_CONTENT  
  44.         LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);  
  45.         tabWidget.setLayoutParams(params);  
  46.         int count = tabWidget.getChildCount();  
  47.         //得到每一个标签,并设置其宽高  
  48.          for (int i = 0; i < count; i++) {  
  49.                View view = tabWidget.getChildTabViewAt(i);     
  50.                view.getLayoutParams().height = 50//tabWidget.getChildAt(i)  
  51.                view.getLayoutParams().width = 80;  
  52.               }  
  53.   
  54.     }  
  55.   
  56.       
  57.   
  58.     @Override  
  59.     public void onTabChanged(String tagString) {  
  60.         // TODO Auto-generated method stub  
  61.           
  62.           
  63.     }  
  64.   
  65. }  



 

转载于:https://www.cnblogs.com/firecode/archive/2012/11/26/2788684.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/274468.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

ui设计看的书_5本关于UI设计的书

ui设计看的书Want to develop a better eye and vocabulary for judging layouts, type choices and imagery?是否想开发一种更好的眼神和词汇来判断布局&#xff0c;类型选择和图像&#xff1f; According to performance experts, the best way to learn is to gain lots o…

GitHub 这8大超实用小技巧,99.9%的人都不知道!

大家好&#xff0c;我是若川。我持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 点此扫码加我微信 ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试…

案例研究设计与方法-罗伯_旭进口重新设计-用户体验案例研究

案例研究设计与方法-罗伯Asahi Imports is a Japanese grocery store located in central Austin, Texas. It has a passionate following, over fifty years’ history, and strong business growth. But its website is showing its age, and not hitting its full potential…

Taro v3.6 代号为「Reach」,已发布 canary 版本

大家好&#xff0c;我是若川。我持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 点此扫码加我微信 lxchuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试…

axure rp 创建弹框_如何在Axure RP 9中创建交换机

axure rp 创建弹框Axure is a well-known prototyping tool with a lot of history, it has been around for years. You can create almost any kind of prototypes from simple ones to more complex ones with variables and logic without writing a single line of code (…

用 Vue3 手撕了个企业级项目,真香!

最近几年&#xff0c;随着短视频、小程序、直播带货的火爆&#xff0c;前端开发工程师越来越热门&#xff0c;薪资待遇也快接近后端开发工程师了&#xff0c;前端领域进化为内卷重灾区。然而伴随着 Vue 3.0 的发布&#xff0c;前端技术也迎来了一次大革新&#xff0c;像是字节跳…

界面设计语言_使用任何语言设计界面的提示

界面设计语言Designing for international audiences is challenging. I spent most of my career in Australia designing exclusively in English. Australian English is ‘unique’ in the sense that we are really into slang, puns, idioms.为国际观众设计是具有挑战性的…

托管代码和非托管代码

托管代码和非托管代码有什么区别呢&#xff1f;从字面上理解&#xff0c;只是一个是被托管的&#xff0c;另一个是没有被托管的。但是&#xff0c;被托管的托管代码是被谁管着呢&#xff1f;让我们先来看看它们的定义。 托管代码&#xff1a;由公共语言运行库环境&#xff08;而…

如何实现前端新手引导功能?

大家好&#xff0c;我是若川。我持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 点此扫码加我微信 lxchuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试…

hp-ux锁定用户密码_UX设计101:提出正确的问题-规划和促进用户访谈

hp-ux锁定用户密码这是什么&#xff1f; (What is this?) This session is part of a learning curriculum that I designed to incrementally skill up and empower a team of Designers and Researchers whose skillset and ways of working needed to evolve to keep up wi…

我与掘金合作出了源码共读第一期,首发超400人报名,快来参与~

大家好&#xff0c;我是若川。最近有不少新朋友关注我。对我不是很了解的&#xff0c;或许可以读我的2021年度总结。诚邀各位新老读者朋友参加源码共读活动。同时我和掘金合作&#xff0c;共同出了源码共读第一期&#xff0c;11月25日——12月25日&#xff0c;奖品丰厚。我是前…

mac基本操作技巧_6个基本设计技巧

mac基本操作技巧“In everything you do, refine your skills and knowledge about fundamental concepts and simple cases. Once is never enough. As you revisit fundamentals, you will find new insights. It may appear that returning to basics is a step backward an…

如何突破技术瓶颈(适合P6以下)

大家好&#xff0c;我是若川。我持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 点此扫码加我微信 lxchuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试…

stack smash_扶手椅VGUX:Super Smash Bros.Ultimate

stack smashEasily far the most exciting news out of Super Smash Bros. Ultimate’s announcement was that every single character would be returning to the game.asily迄今为止最令人兴奋的消息了任天堂明星大乱斗最终宣布的是&#xff0c; 每一个字符会被返回到游戏中…

《Two Dozen Short Lessons in Haskell》学习(十)- Private Definitions — the where-clause

《Two Dozen Short Lessons in Haskell》&#xff08;Copyright © 1995, 1996, 1997 by Rex Page&#xff0c;有人翻译为Haskell二十四学时教程&#xff0c;该书如果不用于赢利&#xff0c;可以任意发布&#xff0c;但需要保留他们的copyright&#xff09;这本书是学习 Ha…

我和掘金合作的源码共读小册报名快1000人了~

众所周知&#xff0c;我和掘金合作出了源码共读第一期。我是前端领读员。现在报名快1000人了~奖品丰厚。也有一些小伙伴已经写了好几期笔记了~但相对1000人写的还是太少。什么&#xff1f;你不知道&#xff1f;那也很正常&#xff0c;毕竟我的公众号常读人数比较少。大部分人都…

【短语学习】盈余量分析(earned value analysis)

作者&#xff1a;gnuhpc 出处&#xff1a;http://www.cnblogs.com/gnuhpc/ 各种形式的盈余量分析是衡量执行时最常用的方法。它把范围、成本和进度等度量标准结合在一起以帮助项目管理小组评估项目执行。对每项活动而言&#xff0c;盈余量分析包括计算三个主要数值&#xff1a;…

配音剧本_网络的各个阶段:剧本如何传达更好的UX

配音剧本让我们将焦点放在使用剧本技巧提升显微镜上。 (Let’s put the spotlight on elevating microcopy with playwriting techniques.) “Anything you put in a play — any speech — has got to do one of two things: either define character or push the action of t…

极致编译速度,一文搞定webpack5升级

大家好&#xff0c;我是若川。我持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 点此扫码加我微信 lxchuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试…

全库模式 用户模式 表模式_暗模式,亮模式和用户的故事

全库模式 用户模式 表模式I have been working on designing a UI for an app that has individuals over the age of 60 as its main audience. At some point, I found my design more appealing in dark mode. As a UX designer, I know that my opinions and preferences d…