2017-07-27
原CSDN博客已弃用,文章会逐渐迁移过来。
一、首先需要为在drawable目录下为每个按钮添加底部选择器
根据不同的需要可以为选择器设定如下不同的状态
android:state_pressed 是否按下,如一个按钮触摸或者点击。
android:state_focused 是否取得焦点,比如用户选择了一个文本框。
android:state_hovered 光标是否悬停,通常与focused state相同,它是4.0的新特性
android:state_selected 被选中,它与focus state并不完全一样,如一个list view 被选中的时候,它里面的各个子组件可能通过方向键,被选中了。
android:state_checkable 组件是否能被check。如:RadioButton是可以被check的。
android:state_checked 被checked了,如:一个RadioButton可以被check了。
android:state_enabled 能够接受触摸或者点击事件
android:state_activated 被激活,一个布尔值,如果设置为ture,那么这个项目应该在对象被持久选择时使用(如对象的高亮状态),否则应该在对象没有被激活时使用这个状态。
android:state_window_focused 应用程序是否在前台,当有通知栏被拉下来或者一个对话框弹出的时候应用程序就不在前台了
二、将选择器设置到布局文件中
三、创建每一个Fragment对应的布局
如:fragment_main
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="这是首页"/>
</RelativeLayout>
其余同上。
四、创建每一个按钮对应的Fragment
如:MainFragment.java
package com.administrator.taolvyou.fragment;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.administrator.taolvyou.R;
/**
* Created by Administrator on 2018/5/8.
*/
public class MainFragment extends Fragment {
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment_main,container,false);
}
}
其余同上。
五、在MainActivity中加载Fragment
MainActivity.java
package com.administrator.taolvyou;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.LinearLayout;
import com.administrator.taolvyou.fragment.FindFragment;
import com.administrator.taolvyou.fragment.MainFragment;
import com.administrator.taolvyou.fragment.MeFragment;
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
protected LinearLayout mMenuMain;
protected LinearLayout mMenuFind;
protected LinearLayout mMenuMe;
protected MainFragment mMainFragment = new MainFragment();//首页
protected FindFragment mFindFragment = new FindFragment();//发现
protected MeFragment mMeFragment = new MeFragment();//关于我的
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initView();
//获取管理类
this.getSupportFragmentManager()
.beginTransaction()
.add(R.id.container_content,mMainFragment)
.show(mMainFragment)//设置显示状态
.add(R.id.container_content,mFindFragment)
.hide(mFindFragment)//设置隐藏状态
.add(R.id.container_content,mMeFragment)
.hide(mMeFragment).commit();
//事物添加 默认:显示首页 其他页面:隐藏
//提交
}
/**
* 初始化视图
*/
public void initView(){
mMenuMain = this.findViewById(R.id.menu_main);
mMenuFind = this.findViewById(R.id.menu_find);
mMenuMe = this.findViewById(R.id.menu_me);
mMenuMain.setOnClickListener(this);
mMenuFind.setOnClickListener(this);
mMenuMe.setOnClickListener(this);
}
@Override
public void onClick(View v) {
switch (v.getId()){
case R.id.menu_main:
this.getSupportFragmentManager()
.beginTransaction()
.show(mMainFragment)
.hide(mFindFragment)
.hide(mMeFragment)
.commit();
break;
case R.id.menu_find:
this.getSupportFragmentManager()
.beginTransaction()
.hide(mMainFragment)
.show(mFindFragment)
.hide(mMeFragment)
.commit();
break;
case R.id.menu_me:
this.getSupportFragmentManager()
.beginTransaction()
.hide(mMainFragment)
.hide(mFindFragment)
.show(mMeFragment)
.commit();
break;
}
}
}