文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android Fragment+FragmentTabHost组件实现常见主页面(仿微信新浪)

2022-06-06 07:34

关注

采取的方法是Fragment+FragmentTabHost组件来实现这种常见的app主页面的效果

首先给出main.xml文件


  <?xml version="1.0" encoding="utf-8"?>
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical" android:layout_width="match_parent"
  android:layout_height="match_parent">
  <FrameLayout
   android:id="@+id/realtabcontent"
   android:layout_width="fill_parent"
   android:layout_height="0dip"
   android:layout_weight="1"
   android:background="@color/white" />
  <LinearLayout
   android:layout_width="match_parent"
  android:layout_height="wrap_content"
   android:layout_gravity="bottom"
   android:orientation="vertical">
   <View
    android:layout_width="match_parent"
    android:layout_height="1px"
    android:background="@color/color_home_tab_line" />
   <android.support.v4.app.FragmentTabHost
    android:id="@android:id/tabhost"
  android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@color/et_divider_disable">
    <FrameLayout
     android:id="@android:id/tabcontent"
    android:layout_width="0dp"
     android:layout_height="0dp"
     android:layout_weight="0" />
   </android.support.v4.app.FragmentTabHost>
   </LinearLayout>  </LinearLayout>

主代码:


 public class MainActivity
 { @ViewInject(android.R.id.tabhost)
   private FragmentTabHost mTabHost;
 private LayoutInflater layoutInflater;
 private int mImageViewArray[] = {R.drawable.home_tab1, R.drawable.home_tab2, R.drawable.home_tab3, R.drawable.home_tab4};
   private String mTextviewArray[] = {"首页", "圈子", "资讯","个人中心"};
   private Class fragmentArray[] = {Fragment1.class, Fragment2.class, Fragment3.class,Fragment4.class};
 protected void onCreate(Bundle savedInstanceState) {
     super.onCreate(savedInstanceState);
     init();
   }
 @Override
   protected void init() {
 //    list=new JSONArray();
     layoutInflater=LayoutInflater.from(this);
     initTabHost();//初始化底部菜单
 }
 
   private void initTabHost() {
     mTabHost = (FragmentTabHost) findViewById(android.R.id.tabhost);
     mTabHost.setup(this, getSupportFragmentManager(), R.id.realtabcontent);
     int count = fragmentArray.length;
     for (int i = 0; i < count; i++) {
       TabHost.TabSpec tabSpec = mTabHost.newTabSpec(mTextviewArray[i])
           .setIndicator(getTabItemView(i));
       mTabHost.addTab(tabSpec, fragmentArray[i], null);
       mTabHost.getTabWidget().getChildAt(i)
           .setBackgroundResource(R.color.white);
     }
     mTabHost.setCurrentTabByTag(mTextviewArray[0]);
     mTabHost.getTabWidget().setDividerDrawable(null);
 }
  
   private View getTabItemView(int index) {
     View view = layoutInflater.inflate(R.layout.tab_home_item, null);
     ImageView imageView = (ImageView) view.findViewById(R.id.icon);
     imageView.setImageResource(mImageViewArray[index]);
     TextView textView = (TextView) view.findViewById(R.id.name);
     textView.setText(mTextviewArray[index]);
     return view;
   }
 }

通过以上文章,希望能帮助到大家,谢谢大家对本站的支持!

您可能感兴趣的文章:Android 使用FragmentTabHost实现底部菜单功能Android分页中显示出下面翻页的导航栏的布局实例代码Android 利用ViewPager+GridView实现首页导航栏布局分页效果android FragmentTabhost实现导航分页


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 资料下载
  • 历年真题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯