本文实例讲述了AndroID选项卡功能的实现方法。分享给大家供大家参考,具体如下:
选项卡(TabHost)方便的在窗口上设置多个标签页,每个标签页相当于获得一个与外部容器相同大小的组件摆放区域
通过这种方式,可以在一个容器中放置多组件。
创建4个java文件并对应layout
创建主java ,代码
package lianxi;import com.example.jichu_lianxi.R;import androID.app.tabactivity;import androID.content.Intent;import androID.content.res.Resources;import androID.os.Bundle;import androID.Widget.TabHost;public class TobHost_lianxi extends tabactivity{ @OverrIDe protected voID onCreate(Bundle savedInstanceState) { // Todo auto-generated method stub super.onCreate(savedInstanceState); //获取当前Activity的标签,该方法的实现已经执行了setContentVIEw(com.androID.internal.R.layout.tab_content); Resources resources = getResources(); TabHost tabHost = getTabHost(); TabHost.TabSpec spec; /* * 对方法的解释: * 1. newTabSpec("artist")创建一个标签项,其中artist为它的标签标识符 * 2. setIndicator("标签1",resources.getDrawable(R.drawable.bulb_off)) * 显示文本以及标签上的图标(该图标不是一个图片,而是一个xml文件) */ //添加第一个标签 Intent intent = new Intent(TobHost_lianxi.this,KeyOnclick.class); spec = tabHost.newTabSpec("keyonclick").setIndicator("标签1",resources.getDrawable(R.drawable.bulb_off)).setContent(intent); tabHost.addTab(spec);//将标签添加到标签项中 //添加第二个标签 Intent intent2 = new Intent(TobHost_lianxi.this,List_lianxi.class); spec = tabHost.newTabSpec("List").setIndicator("标签2",resources.getDrawable(R.drawable.bulb_off)).setContent(intent2); tabHost.addTab(spec); //添加第三个标签 Intent intent3 = new Intent(TobHost_lianxi.this,Togglebutton_lianxi.class); spec = tabHost.newTabSpec("togglebutton").setIndicator("标签3",resources.getDrawable(R.drawable.bulb_off)).setContent(intent3); tabHost.addTab(spec); //添加第四个标签 Intent intent4 = new Intent(TobHost_lianxi.this,Togglebutton_lianxi.class); spec = tabHost.newTabSpec("toggle").setIndicator("标签4",resources.getDrawable(R.drawable.bulb_off)).setContent(intent4); tabHost.addTab(spec); //设置第一次打开的默认显示的标签,参数与 .newTabSpec的参数匹配 //tabHost.setCurrentTabByTag("toggle"); //设置第一次打开的默认显示的标签,参数代表其添加到标签中的顺序,位置从0开始 tabHost.setCurrentTab(1); }}
其中 KeyOnclick.java、List_lianxi.java、Togglebutton_lianxi.java 代码不贴了
不要忘了在AndroIDManifest.xml文件中修改代码
<application androID:allowBackup="true" androID:icon="@drawable/ic_launcher" androID:label="@string/app_name" androID:theme="@style/Apptheme" > <activity androID:name="lianxi.Mainactivity"> <intent-filter > <action androID:name="androID.intent.action.MAIN"/> <category androID:name="androID.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity androID:name="lianxi.NewActivity"></activity> <activity androID:name="lianxi.AlertDialog_lianxi"></activity> <activity androID:name="lianxi.Notification_lianxi"></activity> <activity androID:name="lianxi.KeyOnclick"></activity> <activity androID:name="lianxi.List_lianxi"></activity> <activity androID:name="lianxi.Togglebutton_lianxi"></activity> <activity androID:name="lianxi.TobHost_lianxi"></activity></application>
效果图(第一张为标签2。因为tabHost.setCurrentTab(1); 设置第2个添加的标签项为默认显示,从0开始算)
更多关于AndroID相关内容感兴趣的读者可查看本站专题:《Android开发入门与进阶教程》、《Android调试技巧与常见问题解决方法汇总》、《Android基本组件用法总结》、《Android视图View技巧总结》、《Android布局layout技巧总结》及《Android控件用法总结》
希望本文所述对大家AndroID程序设计有所帮助。
总结以上是内存溢出为你收集整理的Android开发之选项卡功能的实现方法示例全部内容,希望文章能够帮你解决Android开发之选项卡功能的实现方法示例所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)