Android Fragment+FragmentTabHost组件实现常见主页面(仿微信新浪)
作者:lqh 时间:2023-10-20 10:00:50
采取的方法是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);
}
/**
* 项的样式
* @param index 第几个
* @return 每一个Tab样式
*/
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;
}
}
通过以上文章,希望能帮助到大家,谢谢大家对本站的支持!
标签:Fragment,FragmentTabHost
0
投稿
猜你喜欢
Android手势识别器GestureDetector使用详解
2022-01-16 14:25:17
Android 显示刷新频率的实现代码
2023-09-18 07:01:34
Java设计模式之享元模式示例详解
2022-12-08 22:19:46
关于RedisTemplate之opsForValue的使用说明
2023-07-09 16:53:04
java连接MySQl数据库实例代码
2021-12-18 18:19:36
java多线程-读写锁原理
2021-07-20 17:28:52
Unity实现俄罗斯方块(一)
2021-06-07 15:30:24
Java 如何实现时间控制
2023-02-20 06:19:23
Java微信公众平台开发(8) 多媒体消息回复
2023-02-19 19:57:42
C#写入对象或集合类型数据到xml文件的方法
2022-11-12 17:11:37
新手了解java IO基础知识
2023-10-20 22:19:45
java生成图片验证码实例代码
2022-01-06 04:01:37
java8中:: 用法示例(JDK8双冒号用法)
2023-11-25 06:21:21
Android编程之高效开发App的10个建议
2021-08-28 15:55:46
Java中方法的重写与成员变量的隐藏
2023-06-01 01:35:55
Spring Boot统一处理全局异常的实战教程
2023-11-24 20:51:34
opencv配置的完整步骤(win10+VS2015+OpenCV3.1.0)
2023-06-28 14:55:19
SpringBoot中整合MyBatis-Plus-Join使用联表查询的实现
2023-11-28 19:00:26
C#中进程的挂起与恢复
2022-05-17 13:33:26
c# 圆形识别方案和直线识别方案的参考示例
2022-03-10 13:44:11