地址:http://my.oschina.net/aowu/blog/36282

自己改的自定义tabhost组建,效果图如左。有更好的朋友可以相互交流一下,嘿嘿。

1.先上AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.priscilla"
    android:versionCode="1"
    android:versionName="1.0" >

<uses-sdk android:minSdkVersion="7" />

<application
        android:icon="@drawable/icon"
        android:label="@string/app_name" >
        <activity
            android:label="@string/app_name"
            android:name=".MyTab" >
            <intent-filter >
                <action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name=".TabContent" >
        </activity>
    </application>

</manifest>

2  MyTab.java

package com.priscilla;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.WeakHashMap;

import android.app.TabActivity;
import android.content.Context;
import android.content.Intent;
import android.content.res.Resources;
import android.os.Bundle;
//import android.view.LayoutInflater;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.TabHost;
import android.widget.TabWidget;
import android.widget.TextView;
import android.widget.TabHost.TabSpec;

public class MyTab extends TabActivity {
 /** Called when the activity is first created. */

private TabHost mTabhost;
 private TabWidget mTabWidget;
 private LayoutInflater mInflater;
 private List<TextView> mtext;
 private List<TabSpec> mTabSpec;
 private List<LinearLayout> linearLayout;
 private List<Intent> intent; 
 private Context mContext;

public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);

mContext = this;
  mInflater = LayoutInflater.from(this);

// mTabhost = this.getTabHost();// 从TabActivity上面获取放置Tab的TabHost
  mTabhost = (TabHost) findViewById(android.R.id.tabhost);
  mTabWidget = (TabWidget) findViewById(android.R.id.tabs);

mTabSpec = new ArrayList<TabSpec>();
  linearLayout = new ArrayList<LinearLayout>();
  mtext = new ArrayList<TextView>();
  intent = new ArrayList<Intent>();

creatTab();

/*
   * mTabhost.addTab(mTabhost .newTabSpec("选项卡1") .setIndicator(
   * (LinearLayout) LayoutInflater.from(this).inflate( R.layout.tabwidget,
   * null)) .setContent(R.id.linearLayout01)); mTabhost.addTab(mTabhost
   * .newTabSpec("选项卡2") .setIndicator( (LinearLayout)
   * LayoutInflater.from(this).inflate( R.layout.tabwidget, null))
   * .setContent(R.id.linearLayout02)); mTabhost.addTab(mTabhost
   * .newTabSpec("选项卡3") .setIndicator( (LinearLayout)
   * LayoutInflater.from(this).inflate( R.layout.tabwidget, null))
   * .setContent(R.id.linearLayout03));
   */

// 设置当前显示哪一个标签
  // mTabhost.setCurrentTab(0);

// 去tabwidget白线,这个对默认主题有效
  /*
   * mTabhost.setPadding(mTabhost.getPaddingLeft(),
   * mTabhost.getPaddingTop(), mTabhost.getPaddingRight(),
   * mTabhost.getPaddingBottom() - 5);
   */
 }

public void creatTab() {

for (int i = 0; i < 3; i++) {
   mTabSpec.add(mTabhost.newTabSpec("tab" + i));
   linearLayout.add((LinearLayout) mInflater.inflate(
     R.layout.tabwidget, null));
   mtext.add((TextView) linearLayout.get(i)
     .findViewById(R.id.tab_name));
   mtext.get(i).setText(
     mContext.getResources().getString(R.string.tab_name,
       String.valueOf(i)));
   mTabSpec.get(i).setIndicator(linearLayout.get(i));
   //mTabSpec.get(i).setContent(list.get(i));
   intent.add(new Intent(mContext, TabContent.class));
   Log.v("---whty---", mTabSpec.get(i).getTag());
   Bundle buddle = new Bundle();
   buddle.putString("tab", mTabSpec.get(i).getTag());
   intent.get(i).putExtras(buddle);
   
   mTabSpec.get(i).setContent(intent.get(i));

mTabhost.addTab(mTabSpec.get(i));

}
 }

}

2.TabContent.java

package com.priscilla;

import android.app.Activity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.widget.ImageView;
import android.widget.TextView;

public class TabContent extends Activity {

private TextView textView;
 private ImageView imgView;

@Override
 protected void onCreate(Bundle savedInstanceState) {
  // TODO Auto-generated method stub
  super.onCreate(savedInstanceState);
  setContentView(R.layout.tabcontent);

textView = (TextView) findViewById(R.id.TextView);
  imgView = (ImageView) findViewById(R.id.ImageView);

Bundle buddle = this.getIntent().getExtras();
  String flag = buddle.getString("tab");

if ("tab0".equals(flag)) {
   textView.setText(getResources().getString(R.string.andy));
   Bitmap bitmap = BitmapFactory.decodeResource(getResources(),
     R.drawable.andy);
   imgView.setImageBitmap(bitmap);
  }

if ("tab1".equals(flag)) {
   textView.setText(getResources().getString(R.string.bill));
   Bitmap bitmap = BitmapFactory.decodeResource(getResources(),
     R.drawable.bill);
   imgView.setImageBitmap(bitmap);
  }

if ("tab2".equals(flag)) {
   textView.setText(getResources().getString(R.string.linux));
   Bitmap bitmap = BitmapFactory.decodeResource(getResources(),
     R.drawable.torvalds);
   imgView.setImageBitmap(bitmap);
  }

}

}

3.3个layout

main.xml

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/wcity_normal_bg" >

<LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >

<TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/con_film_bottom_tab" />

<FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" >
        </FrameLayout>
    </LinearLayout>

</TabHost>

tabwidget.xml

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent" 
 android:orientation="horizontal"
 android:gravity="center" >
 <TextView 
  android:id="@+id/tab_name" 
  android:layout_width="fill_parent" 
  android:layout_height="39dp"
  android:layout_marginLeft="2dp"
  android:layout_marginRight="2dp"
  android:ellipsize="marquee"  
  android:marqueeRepeatLimit="marquee_forever"
  android:singleLine="true"
  android:gravity="center" 
  android:textColor="@drawable/tab_selector"
  android:background="@drawable/tab_bg_selector" />
</LinearLayout>

tabcontent.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/linearLayout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="center_horizontal"
    android:orientation="vertical" >

<ImageView
        android:id="@+id/ImageView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:scaleType="fitXY" />

<TextView
        android:id="@+id/TextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="24dip" />

</LinearLayout>

4.2个drawable

tab_bg_selector.xml

<?xml version="1.0" encoding="UTF-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
 <item android:state_selected="true" android:drawable="@drawable/con_film_tab_pressed"  />
</selector>

tab_selector.xml

<?xml version="1.0" encoding="UTF-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
 <item android:state_selected="false" android:color="#ffffffff"/>
 <item android:state_selected="true" android:color="#ffEEC900"/>
</selector>

6.colors.xml  string.xml

colors.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="wcity_normal_bg">#ffe5eff4</color>
</resources>

string.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="hello">Hello World, my</string>
    <string name="app_name">myTab</string>
    <string name="andy">Android的创造者: Andy Rubin</string>
    <string name="bill">Java创造者之一: Bill Joy</string>
    <string name="linux">Linux之父: Linus Torvalds</string>
    <string name="tab_name">选项卡%1$s</string>    
</resources>

android自定义tabhost,tabcontent用intent获得的更多相关文章

  1. Android 自定义TabHost,TabWidget样式

    界面比较简单,要想做得漂亮换几张图片就可以了. 第一步:先在布局(这里用了main.xml创建时自动生成的)里面放上TabHost ,只要将TabHost控件托至屏幕中就可: <?xml ver ...

  2. Android项目--tabhost

    所有牵扯到自定义布局的layout中尽量用RelativeLayout 在通讯录中如果像小米手机的UI那就是viewpager,在这里,我们做成静态的.通过tabhost来做. 1.布局 a) 直接用 ...

  3. Android之TabHost实现Tab切换

    TabHost是整个Tab的容器,包含TabWidget和FrameLayout两个部分,TabWidget是每个Tab的表情,FrameLayout是Tab内容. 实现方式有两种: 1.继承TabA ...

  4. android中TabHost和RadioGroup

    android底部菜单应用 博客分类: android--UI示例 TabHostMenuRadioGroupButton  在android中实现菜单功能有多种方法. Options Menu:用户 ...

  5. Android底部TabHost API

    今天在项目中遇到了底部TabHost,顺便就写了一个底部TabHost的api继承即可使用非常简单,以下为源代码: 首先是自定义的TabHostActivity,如果要使用该TabHost继承该类即可 ...

  6. android自定义TabWidget样式

    先看看效果图吧,个人觉得图标丑了点,不过还行,自己用PS做的 下面是全部代码和流程,一定要按流程顺序来,不然错误! 1.tabhost.xml <TabHost xmlns:android=&q ...

  7. Android:TabHost实现Tab切换

    TabHost是整个Tab的容器,包含TabWidget和FrameLayout两个部分,TabWidget是每个Tab的表情,FrameLayout是Tab内容. 实现方式有两种: 1.继承TabA ...

  8. Android选项卡TabHost方式实现

    1.布局XML: <?xml version="1.0" encoding="utf-8"?> <TabHost xmlns:android= ...

  9. android使用tabhost实现导航

    参考 http://blog.csdn.net/xixinyan/article/details/6771341 http://blog.sina.com.cn/s/blog_6b04c8eb0101 ...

随机推荐

  1. AOJ1024 Cleaning Robot 2.0

    先说一说这个OJ:貌似是11区某大学ACM的OJ,叫AIZU ONLINE JUDGE,貌似还可以看到部分犇的代码...跪跪跪 然后知道这个OJ是某场比赛安利的= = 接下来将做法: 首先我们可以发现 ...

  2. windows下运用批处理实现一键自动开启多个应用

    工作时,我每天早上到公司,打开自己的电脑,都会有几个固定的软件(myeclipse,飞信,firefox,foxmail等).文件夹和文件需要打开,每天如此,感到很烦,浪费时间做重复的工作,于是想到一 ...

  3. Ubuntu:搜狗输入法不能输入中文

    搜狗输入法不能输入中文 问题描述 可以打开搜狗输入法,可以打英文,但是不能切换成中文. 其他输入法正常使用(这个可以判断是不是fcitx是不是出现错误). 有一个关于sogou的内部错误提示 解决方法 ...

  4. antd中fomr中resetFields清空输入框

    1.如果没有initValue的情况下,直接使用resetFields可以清空文本框的值 2.如果是有initValue的情况下,直接使用resetFields方法会直接重置为initValue的值 ...

  5. Jmeter系列培训(1)--开山篇

    ​       一直以来,我们不断分享,有的人喜欢,也有的人不喜欢,这都没什么,喜欢的点个赞,留个言,不喜欢的就不看好了,今天我们继续,关于jmeter我们分享了很多工作遇到的问题的解决方案,但是很多 ...

  6. Ubuntu16.04 和 hadoop2.7.3环境下 hive2.1.1安装部署

    参考文献: http://blog.csdn.NET/reesun/article/details/8556078 http://blog.csdn.Net/zhongguozhichuang/art ...

  7. 单目标优化问题 常用的 测试函数(MATLAB版)

    ############################################### #                测试函数                     # ######## ...

  8. virtualenv 设置虚拟环境来运行不同版本的python

    转自: http://pythonguidecn.readthedocs.io/zh/latest/dev/virtualenvs.html virtualenv 是一个创建隔绝的Python环境的 ...

  9. TJU Problem 1090 City hall

    注:对于每一横行的数据读取,一定小心不要用int型,而应该是char型或string型. 原题: 1090.   City hall Time Limit: 1.0 Seconds   Memory ...

  10. Chrome在Ubuntu中缺少依赖项,无法安装

    在Ubuntu 13.04中,安装chrome会报下面这个错误(不知是不是因为我没有更新的原因:(  ): 也就是缺少名为libxss1的包. 解决办法,当然可以很简单的去找libxss1这个包下载, ...