各种视图组件

TabHost包含:

       布局器:

                 上边:一个TabWidght里面包含多个abSpec

                 下边:内容部分,是一个FrameLayout,FrameLayout包含可以是一个UI组件,一个Activity或一个View

         

TabHost编程

1、编写要显示的TabHost的布局,只包含tabSpec和下边内容的结构,不包含tabSpec的图片、标签字串等内容。

各种视图组件_第1张图片

<?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"> <LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:padding="5dp"> <TabWidget android:id="@android:id/tabs" android:layout_width="fill_parent" android:layout_height="wrap_content" /> <FrameLayout android:id="@android:id/tabcontent" android:layout_width="fill_parent" android:layout_height="fill_parent" android:padding="5dp" /> </LinearLayout> </TabHost>

2、生成一个TabActivity的子类。

                         生成TabHost对象

                         生成各个TabSpec对象:TabHost.newTabSpec(String)

                         设置TabSpec的标签和图片

                         设置TabSpec下面的内容(UI组件,Activity,View)

                         将TabSpec添加到TabHost中

                         指定默认选择的TabSpec

                         可以为TabHost设置监听器监听标签改变

   

http://wayfarer.javaeye.com/blog/473517

 

 

 

Adapter,可以理解为一种pb中的结果集(数据源+界面):
ArrayAdapter  数据源:数组 界面:系统提供多种或自定义
SimpleAdapter 数据源:多维数据 界面:系统提供多种或自定义
SimpleCursorAdapter 数据源:数据库 界面:系统提供多种或自定义
CursorAdapter 数据源:(ContentProider)
一种控件可以添加多种数据源的Adapter

你可能感兴趣的:(数据库,android,UI,String,layout,encoding)