一概述及图片效果
提供Tab页的窗口视图容器,它有俩个children,一组是用户可以选择指定Tab页的标签,另一组是FrameLayout用来显示该Tab页的内容。个别元素通常控制使用这个容器对象,而不是设置在子元素本身的值。
二、重要方法
addTab(TabHost.TabSpec tabSpec):添加一项Tab页
clearAllTabs():清除所有与之相关联的Tab页.
getCurrentTab():返回当前Tab页.
getTabContentView():返回包含内容的FrameLayout
newTabSpec(String tag):返回一个与之关联的新的TabSpec
三、实例
1.布局文件,需要使用FrameLayout
R.layout.tabhost
-
-
- android:id="@android:id/tabhost"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent" >
-
- android:id="@android:id/tabcontent"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_weight="1.0" />
-
- android:id="@android:id/tabs"
- android:layout_width="fill_parent"
- android:layout_height="60.0dip"
- android:layout_alignParentBottom="true"
- android:layout_gravity="bottom"
- android:background="@drawable/tab_bkg"
- android:fadingEdge="none"
- android:fadingEdgeLength="0.0px"
- android:paddingBottom="0.0dip"
- android:paddingLeft="0.0dip"
- android:paddingRight="0.0dip"
- android:paddingTop="2.0dip" />
-
R.layout.tab
-
-
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical" >
-
- android:id="@+id/tab_imageview_icon"
- android:layout_width="fill_parent"
- android:layout_height="32.0dip"
- android:scaleType="fitCenter" />
-
- android:id="@+id/tab_textview_title"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:ellipsize="marquee"
- android:gravity="center"
- android:marqueeRepeatLimit="1"
- android:singleLine="true"
- android:textSize="11.0sp" />
-
复制代码
2.继承TabActivity
public class TabHostDemo extends TabActivity
3.获取次此abHost
TabHost tabHost = getTabHost();
4.设置布局
LayoutInflater.from(this).inflate(R.layout.tabhostpage, tabHost.getTabContentView(), true);
5.添加Tab页(代码)
- public class MainActivity extends TabActivity {
- private TabHost tabHost;
- private RadioGroup mainbtGroup;
- private static final String HOME = "主页";
- private static final String REFER = "提及";
- private static final String SECRET = "私信";
- private static final String SEARCH = "搜索";
- private static final String ATTENTIION = "关注";
-
-
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.tabhost);
-
- tabHost = this.getTabHost();
-
- View view1 = View.inflate(MainActivity.this, R.layout.tab, null);//后面介绍inflate的用法
- ((ImageView) view1.findViewById(R.id.tab_imageview_icon)).setImageResource(R.drawable.tab_timeline_selector);
- ((TextView) view1.findViewById(R.id.tab_textview_title)).setText(HOME);
-
- TabHost.TabSpec spec1 = tabHost.newTabSpec(HOME)
- .setIndicator(view1)
- .setContent(new Intent(this, HomeTimeLineActivity.class));
- tabHost.addTab(spec1);
-
- View view2 = View.inflate(MainActivity.this, R.layout.tab, null);
- ((ImageView) view2.findViewById(R.id.tab_imageview_icon)).setImageResource(R.drawable.tab_atme_selector);
- ((TextView) view2.findViewById(R.id.tab_textview_title)).setText(REFER);
-
- TabHost.TabSpec spec2 = tabHost.newTabSpec(REFER)
- .setIndicator(view2)
- .setContent(new Intent(this, ReferActivity.class));
- tabHost.addTab(spec2);
-
- View view3 = View.inflate(MainActivity.this, R.layout.tab, null);
- ((ImageView) view3.findViewById(R.id.tab_imageview_icon)).setImageResource(R.drawable.tab_message_selector);
- ((TextView) view3.findViewById(R.id.tab_textview_title)).setText(SECRET);
-
- TabHost.TabSpec spec3 = tabHost.newTabSpec(SECRET)
- .setIndicator(view3)
- .setContent(new Intent(this, MessageActivity.class));
- tabHost.addTab(spec3);
-
- View view4 = View.inflate(MainActivity.this, R.layout.tab, null);
- ((ImageView) view4.findViewById(R.id.tab_imageview_icon)).setImageResource(R.drawable.tab_explore_selector);
- ((TextView) view4.findViewById(R.id.tab_textview_title)).setText(SEARCH);
-
- TabHost.TabSpec spec4 = tabHost.newTabSpec(SEARCH)
- .setIndicator(view4)
- .setContent(new Intent(this, SearchActivity.class));
- tabHost.addTab(spec4);
-
- View view5 = View.inflate(MainActivity.this, R.layout.tab, null);
- ((ImageView) view5.findViewById(R.id.tab_imageview_icon)).setImageResource(R.drawable.tab_focus_selector);
- ((TextView) view5.findViewById(R.id.tab_textview_title)).setText(ATTENTIION);
- TabHost.TabSpec spec5 = tabHost.newTabSpec(ATTENTIION)
- .setIndicator(view5)
- .setContent(new Intent(this, AttentionActivity.class));
- tabHost.addTab(spec5);
- }
- }
复制代码
四 :Inflate()方法用途
Inflate()作用就是将xml定义的一个布局找出来并隐藏起来,并没有显示出来。
android上还有一个与Inflate()类似功能的方法叫findViewById(),二者有时均可使用,但也有区别,
区别在于:
如果你的Activity里用到别的layout,比如对话框layout并且你还要设置这个layout上的其他组件的内容,你就必须用inflate()方法先将对话框的layout找出来,然后再用findViewById()找到它上面的其它组件。例如:
- View view1 = View.inflate(MainActivity.this, R.layout.tab, null);
- ((ImageView) view1.findViewById(R.id.tab_imageview_icon)).setImageResource(R.drawable.tab_timeline_selector);
- ((TextView) view1.findViewById(R.id.tab_textview_title)).setText(HOME);
注:R.id.dialog_tv是在对话框layout上的组件,而这时若直接用this.findViewById(R.id.dialog_tv)肯定会报错。
所以,Inflate()或可理解为“隐性膨胀”,隐性摆放在view里,在inflate()之前只是获得控件,但没有大小也没有在View里占据空间;在inflate()之后有了一定大小,但是处于隐藏状态。
setContentView和inflate区别:
setContentView()一旦调用, layout就会立刻显示UI;而inflate只会把Layout形成一个以view类实现成的对象,有需要时再用setContentView(view)显示出来。一般在activity中通过setContentView()将界面显示出来,但是如果需要在非activity中对控件布局进行设置,这就需LayoutInflater来进行动态加载了。
LayoutInfalter和findViewById区别:
LayoutInflater的作用类似于 findViewById(),不同点是LayoutInflater是用来找layout文件夹下的xml布局文件,并且实例化!而 findViewById()是找具体某一个xml下的具体 widget控件(如:Button,TextView等)。
它可以有很多地方可以使用,如BaseAdapter的getView中,自定义Dialog中取得view中的组件widget等等。
它的用法有2种:
- view plaincopy to clipboardprint?
- LayoutInflater inflater = LayoutInflater.from(this);
- View view=inflater.inflate(R.layout.ID, null);
- 或者干脆并成一句:
- View view=LayoutInflater.from(this).inflate(R.layout.ID, null);
另一种方法:
- view plaincopy to clipboardprint?
- LayoutInflater inflater = (LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE);
- View view=inflater.inflate(R.layout.ID, null);
上面2种方法本质上是一样的,看下面的源码,form()调用的就是getSystemService():
- Java代码
- public static LayoutInflater from(Context context) {
- LayoutInflater LayoutInflater =
- (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
- if (LayoutInflater == null) {
- throw new AssertionError("LayoutInflater not found.");
- }
- return LayoutInflater;
- }
另外getSystemService()是Android很重要的一个API,它是Activity的一个方法,根据传入的NAME来取得对应的Object,然后转换成相应的服务对象。以下介绍系统相应的服务。
传入的Name |
返回的对象 |
说明 |
WINDOW_SERVICE |
WindowManager |
管理打开的窗口程序 |
LAYOUT_INFLATER_SERVICE |
LayoutInflater |
取得xml里定义的view |
ACTIVITY_SERVICE |
ActivityManager |
管理应用程序的系统状态 |
POWER_SERVICE |
PowerManger |
电源的服务 |
ALARM_SERVICE |
AlarmManager |
闹钟的服务 |
NOTIFICATION_SERVICE |
NotificationManager |
状态栏的服务 |
KEYGUARD_SERVICE |
KeyguardManager |
键盘锁的服务 |
LOCATION_SERVICE |
LocationManager |
位置的服务,如GPS |
SEARCH_SERVICE |
SearchManager |
搜索的服务 |
VEBRATOR_SERVICE |
Vebrator |
手机震动的服务 |
CONNECTIVITY_SERVICE |
Connectivity |
网络连接的服务 |
WIFI_SERVICE |
WifiManager |
Wi-Fi服务 |
TELEPHONY_SERVICE |
TeleponyManager |
电话服务 |
- Java代码
-
- public void showCustomDialog(){
- AlertDialog.Builder builder;
- AlertDialog alertDialog;
- Context mContext = AppActivity.this;
-
-
- LayoutInflater inflater = (LayoutInflater)
- mContext.getSystemService(LAYOUT_INFLATER_SERVICE);
- View layout = inflater.inflate(R.layout.custom_dialog,null);
- TextView text = (TextView) layout.findViewById(R.id.text);
- text.setText("Hello, Welcome to Mr Wei's blog!");
- ImageView image = (ImageView) layout.findViewById(R.id.image);
- image.setImageResource(R.drawable.icon);
- builder = new AlertDialog.Builder(mContext);
- builder.setView(layout);
- alertDialog = builder.create();
- alertDialog.show();
- }
- }
-
- protected void showToast(int type) {
- Toast.makeText(this, "*********", Toast.LENGTH_LONG).show();
-
- LayoutInflater li = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
- View view = li.inflate(R.layout.toast, null);
-
- Toast toast = new Toast(this);
- toast.setView(view);
- toast.setDuration(type);
- toast.show();
- }