RadioGroup结合RadioButton使用切换Fragment片段

界面布局activity_lan_qiu,代码xml设置如下:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical">

<include layout="@layout/tool_bar"/>

<LinearLayout

android:layout_width="match_parent"

android:layout_height="match_parent"

android:background="@color/white"

android:orientation="vertical">

<FrameLayout

android:id="@+id/fragment_container"

android:layout_width="match_parent"

android:layout_height="0dp"

android:layout_weight="1"

android:background="@color/white">

</FrameLayout>

<RadioGroup

android:id="@+id/radioGroup"

android:layout_width="match_parent"

android:layout_height="40dp"

android:orientation="horizontal"

android:background="@color/colorPrimary"

>

<RadioButton

android:text="首页"

android:layout_width="wrap_content"

android:layout_height="match_parent"

android:id="@+id/btn_homepage"

android:layout_weight="1"

android:button="@null"

android:gravity="center"

android:textColor="@color/selector_font_color"

android:textSize="18sp"

/>

<RadioButton

android:text="社区"

android:layout_width="wrap_content"

android:layout_height="match_parent"

android:id="@+id/btn_message"

android:layout_weight="1"

android:button="@null"

android:gravity="center"

android:textColor="@color/selector_font_color"

android:textSize="18sp"

/>

<RadioButton

android:text="运动"

android:layout_width="wrap_content"

android:layout_height="match_parent"

android:id="@+id/btn_service"

android:layout_weight="1"

android:button="@null"

android:gravity="center"

android:textColor="@color/selector_font_color"

android:textSize="18sp"

/>

<RadioButton

android:text="个人"

android:layout_width="wrap_content"

android:layout_height="match_parent"

android:id="@+id/btn_my"

android:layout_weight="1"

android:button="@null"

android:gravity="center"

android:textColor="@color/selector_font_color"

android:textSize="18sp"

/>

</RadioGroup>

</LinearLayout>

</LinearLayout>

android java 类LanQiuActivity 代码如下:

public class LanQiuActivity extends FragmentActivity implements RadioGroup.OnCheckedChangeListener {

private RadioGroup radioGroup;

private RadioButton btn_homepage, btn_message, btn_service, btn_my;

public static final String fragment1Tag = "fragment1";

public static final String fragment2Tag = "fragment2";

public static final String fragment3Tag = "fragment3";

public static final String fragment4Tag = "fragment4";

private AMapLocationClient locationClient = null;

private AMapLocationClientOption locationOption = null;

private TextView tvshare;

private TextView iv_back;

String city;

public static boolean aa = true;

private Toolbar toolbar;

/**

* 定位监听

*/

AMapLocationListener locationListener = new AMapLocationListener() {

@Override

public void onLocationChanged(AMapLocation location) {

if (null != location) {

StringBuffer sb = new StringBuffer();

if (location.getErrorCode() == 0) {

//解析定位结果,

city = location.getLatitude() + ":" + location.getLongitude();

} else {

sb.append("定位失败" + "\n");

sb.append("错误码:" + location.getErrorCode() + "\n");

}

Log.e("解析定位结果", city);

iv_back.setText(location.getCity());

} else {

iv_back.setText("定位失败");

}

if (aa) {

XinzhiTianqiData();

aa = false;

}

}

};

/**

* 开始定位

*

* @author hongming.wang

* @since 2.8.0

*/

private void startLocation() {

//根据控件的选择,重新设置定位参数

//        resetOption();

// 设置定位参数

locationClient.setLocationOption(locationOption);

// 启动定位

locationClient.startLocation();

}

/**

* 默认的定位参数

*

* @author hongming.wang

* @since 2.8.0

*/

private AMapLocationClientOption getDefaultOption() {

AMapLocationClientOption mOption = new AMapLocationClientOption();

mOption.setLocationMode(AMapLocationClientOption.AMapLocationMode.Hight_Accuracy);//可选,设置定位模式,可选的模式有高精度、仅设备、仅网络。默认为高精度模式

mOption.setGpsFirst(false);//可选,设置是否gps优先,只在高精度模式下有效。默认关闭

mOption.setHttpTimeOut(30000);//可选,设置网络请求超时时间。默认为30秒。在仅设备模式下无效

mOption.setInterval(2000);//可选,设置定位间隔。默认为2秒

mOption.setNeedAddress(true);//可选,设置是否返回逆地理地址信息。默认是true

mOption.setOnceLocation(false);//可选,设置是否单次定位。默认是false

mOption.setOnceLocationLatest(false);//可选,设置是否等待wifi刷新,默认为false.如果设置为true,会自动变为单次定位,持续定位时不要使用

AMapLocationClientOption.setLocationProtocol(AMapLocationClientOption.AMapLocationProtocol.HTTP);//可选, 设置网络请求的协议。可选HTTP或者HTTPS。默认为HTTP

mOption.setSensorEnable(false);//可选,设置是否使用传感器。默认是false

mOption.setWifiScan(true); //可选,设置是否开启wifi扫描。默认为true,如果设置为false会同时停止主动刷新,停止以后完全依赖于系统刷新,定位位置可能存在误差

mOption.setLocationCacheEnable(true); //可选,设置是否使用缓存定位,默认为true

return mOption;

}

/**

* 初始化定位

*

* @author hongming.wang

* @since 2.8.0

*/

private void initLocation() {

//初始化client

locationClient = new AMapLocationClient(getApplicationContext());

locationOption = getDefaultOption();

//设置定位参数

locationClient.setLocationOption(locationOption);

// 设置定位监听

locationClient.setLocationListener(locationListener);

//        XinzhiTianqiData();

}

private void XinzhiTianqiData() {

RequestParams params = new RequestParams();

params.put("location", city);

Log.e("天气XinzhiTianqiData", "天气XinzhiTianqiData");

AsyncHttpClientUtil.getInstance().get(Constants.XinzhiTianqi, params, new AsyncHttpResponseHandler() {

@Override

public void onSuccess(int statusCode, Header[] headers, byte[] responseBody) {

String s = new String(responseBody);

//                Log.e("天气", ""+s);

XinzhiModle xinzhiModle = GsonUtils.parseJSON(s, XinzhiModle.class);

List<XinzhiModle.ResultsBean> results = xinzhiModle.getResults();

String text = results.get(0).getNow().getText();

tvshare.setText("天气: " + text);

}

@Override

public void onFailure(int statusCode, Header[] headers, byte[] responseBody, Throwable error) {

}

});

}

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

if (savedInstanceState == null) {

FragmentManager fragmentManager = getSupportFragmentManager();

Fragment fragment = new HomeFragment();

fragmentManager.beginTransaction().replace(R.id.fragment_container, fragment, fragment1Tag).commit();

}

setContentView(R.layout.activity_lan_qiu);

toolbar = (Toolbar) findViewById(R.id.tool_bar);

TextView tool_bar_title = (TextView)findViewById(R.id.tool_bar_title);

tool_bar_title.setVisibility(View.GONE);

tvshare = (TextView)findViewById(R.id.tv_share1);

iv_back = (TextView)findViewById(R.id.iv_back1);

iv_back.setVisibility(View.VISIBLE);

tvshare.setVisibility(View.VISIBLE);

iv_back.setTextSize(22);

tvshare.setTextSize(22);

radioGroup = (RadioGroup) this.findViewById(R.id.radioGroup);

btn_homepage = (RadioButton) this.findViewById(R.id.btn_homepage);

btn_homepage.setSelected(true);

btn_message = (RadioButton) this.findViewById(R.id.btn_message);

btn_service = (RadioButton) this.findViewById(R.id.btn_service);

btn_my = (RadioButton) this.findViewById(R.id.btn_my);

initLocation();

startLocation();

radioGroup.setOnCheckedChangeListener(this);

}

public static void start(Context context, SzBean szBean) {

Intent starter = new Intent(context, MainActivity.class);

starter.putExtra(ParamsKey.EXTRA_SZBEAN, szBean);

context.startActivity(starter);

}

//选中首页界面RadioButton处理事件

private void HomePageSelect() {

btn_homepage.setSelected(true);

btn_message.setSelected(false);

btn_service.setSelected(false);

btn_my.setSelected(false);

}

//选中信息界面RadioButton处理事件

private void MessageSelect() {

btn_homepage.setSelected(false);

btn_message.setSelected(true);

btn_service.setSelected(false);

btn_my.setSelected(false);

}

//选中记录RadioButton处理事件

private void RecordSelect() {

btn_homepage.setSelected(false);

btn_message.setSelected(false);

btn_service.setSelected(true);

btn_my.setSelected(false);

}

//选中我的界面RadioButton处理事件

private void MySelect() {

btn_homepage.setSelected(false);

btn_message.setSelected(false);

btn_service.setSelected(false);

btn_my.setSelected(true);

}

//在RadioGroup中切换改变选中RadioButton事件,处理跳转到相应界面

@Override

public void onCheckedChanged(RadioGroup radioGroup, int i) {

FragmentManager fm = getSupportFragmentManager();

FragmentTransaction ft = fm.beginTransaction();

Fragment fragment1 = fm.findFragmentByTag(fragment1Tag);

Fragment fragment2 = fm.findFragmentByTag(fragment2Tag);

Fragment fragment3 = fm.findFragmentByTag(fragment3Tag);

Fragment fragment4 = fm.findFragmentByTag(fragment4Tag);

if (fragment1 != null) {

ft.hide(fragment1);

}

if (fragment2 != null) {

ft.hide(fragment2);

}

if (fragment3 != null) {

ft.hide(fragment3);

}

if (fragment4 != null) {

ft.hide(fragment4);

}

switch (i) {

case R.id.btn_homepage:

toolbar.setVisibility(View.VISIBLE);

if (fragment1 == null) {

fragment1 = new HomeFragment();

ft.add(R.id.fragment_container, fragment1, fragment1Tag);

} else {

ft.show(fragment1);

}

HomePageSelect();

break;

case R.id.btn_message:

toolbar.setVisibility(View.VISIBLE);

if (fragment2 == null) {

fragment2 = new BBsFragment();

ft.add(R.id.fragment_container, fragment2, fragment2Tag);

} else {

ft.show(fragment2);

}

MessageSelect();

break;

case R.id.btn_service:

toolbar.setVisibility(View.VISIBLE);

if (fragment3 == null) {

fragment3 = new SportFragment();

ft.add(R.id.fragment_container, fragment3, fragment3Tag);

} else {

ft.show(fragment3);

}

RecordSelect();

break;

case R.id.btn_my:

toolbar.setVisibility(View.GONE);

if (fragment4 == null) {

fragment4 = new PersonalCenteFragment();

ft.add(R.id.fragment_container, fragment4, fragment4Tag);

} else {

ft.show(fragment4);

}

MySelect();

break;

}

ft.commit();

}

//app退到后台,我们去玩其他的app,过一段时间回来,这个时候我们的app已经被销毁,我们按多任务键切换回来,发现界面上多个Fragment出现了重叠的情况,这是因为多个Fragment同时显示了,出现了重叠的情况,解决的办法如下:重写Activity的onRestoreInstanceState方法

@Override

protected void onRestoreInstanceState(Bundle savedInstanceState) {

super.onRestoreInstanceState(savedInstanceState);

for (int i = 0; i < radioGroup.getChildCount(); i++) {

RadioButton mTab = (RadioButton) radioGroup.getChildAt(i);

FragmentManager fm = getSupportFragmentManager();

Fragment fragment = fm.findFragmentByTag((String) mTab.getTag());

FragmentTransaction ft = fm.beginTransaction();

if (fragment != null) {

if (!mTab.isChecked()) {

ft.hide(fragment);

}

}

ft.commit();

}

}

private long mExitTime;

//按back提示再按一次退出

public boolean onKeyDown(int keyCode, KeyEvent event) {

if (keyCode == KeyEvent.KEYCODE_BACK) {

if ((System.currentTimeMillis() - mExitTime) > 2000) {

Toast.makeText(getApplicationContext(), "再按一次退出", Toast.LENGTH_SHORT).show();

mExitTime = System.currentTimeMillis();

} else {

finish();

System.exit(0);

}

return true;

}

return super.onKeyDown(keyCode, event);

}

}

时间: 2024-10-25 03:53:39

RadioGroup结合RadioButton使用切换Fragment片段的相关文章

动态添加RadioButton并切换Fragment

公司项目中有这样一个需求,当从网络获取json数据并解析后,动态的添加按钮,点击时切换对应按钮下存储的各种数据. 如下图: 这里只是单单为了动态添加RadioButton而已,所以数据直接用Fragment替换,效果如下: MainActivity: package com.ut.radiobuttondynamicadd; import android.os.Bundle; import android.support.v4.app.Fragment; import android.suppo

手机影音第三天,通过监听底部radiogroup按钮状态来切换中间FragmentLayout里的内容

主要是Fragment的使用,其切换fragment的步骤如下 1.获取FragmentManager 实例,但是需要MainActivity extends FragmentActivity才能去获取FragmentManager. 通过FragmentManager  fragmentManager=getSupportFragmentManager(); 2.开启事务  ,有点类似javaee里的hibernate 操作数据库 FragmentTranaction tranaction=

切换Fragment时实现数据保持

摘要 Fragment设计初衷是为了简化不同屏幕分辨率的开发难度,他将代表一个功能的UI及其相关数据看做一个模块,以便达到复用.可以将Fragment看作是一个可以嵌入布局中的activity,有自己的生命周期. Fragment设计初衷是为了简化不同屏幕分辨率的开发难度,他将代表一个功能的UI及其相关数据看做一个模块,以便达到复用.可以将Fragment看作是一个可以嵌入布局中的activity,有自己的生命周期.比如我现在在手机上有activityA和activityB,但是在平板上有更大的

底边栏Tab切换Fragment,带角标显示效果

类似于手机版qq的底边栏Tab效果有很多种实现方法,比如TabActivity.自定义RadioGroup等.由于高版本下TabActivity已经被废弃,而且Activity比较重量级,所以一般不使用TabActivity.这里分享一种我写的自定义底部Tab的方法,顺带加上底部标签的角标显示效果.效果如下: 关于Demo需要交代几点: 1.这个Demo中并没有对尺寸做适配,在不同机型的手机上运行需要调整代码中的尺寸相关代码. 2.角标效果只是个演示效果,逻辑可能并不合理,具体显示或者改变.隐藏

Activity内切换fragment实现底部菜单切换遇到的坑

1.一般说来,app底部导航都会设计为5个菜单,可以使用textView,也可使用radioButton,这里我选择用radioButton,给radioButton直接设置selector就可以实现背景变换. 2.接下来说说,fragment切换的实现方式.大家都知道切换fragment有两种方式: ① replace直接替换: fragmentManager.beginTransaction().replace(R.id.ll_container, fg_home).addToBackSta

简述RadioGroup和RadioButton的使用

简述RadioGroup和RadioButton的使用 在项目中有身份选择的选项,需要用到RadioGroup和RadioButton,这里做个记录,和大家交流一下. 话不多说,一起看代码 XML代码 <RadioGroup android:id="@+id/login_radiogroup" android:layout_width="wrap_content" android:layout_height="wrap_content" a

android中RadioGroup、RadioButton、Spinner、EditText用法详解(含示例截图和源代码)

为了保护版权.尊重原创,转载请注明出处:http://blog.csdn.net/u013149325/article/details/43237757,谢谢! 今天在项目中用到了android中常用的RadioGroup.RadioButton.Spinner.EditText等控件,在此介绍一下它们的用法,希望对需要的朋友有帮助. 一.RadioGroup和RadioButton的使用 RadioButton就是我们常见的单选按钮,一个RadioGroup可以包含多个单选按钮,但是每次只能选

FragmentTab切换Fragment时避免重复加载UI

原文地址:破晓博客 ? [原创]FragmentTab切换Fragment时避免重复加载UI 使用FragmentTa时,Fragment之间切换时每次都会调用onCreateView方法,导致每次Fragment的布局都重绘,无法保持Fragment原有状态. 测试于:Android2.3+ 解决办法:在Fragment onCreateView方法中缓存View private View rootView = null;// 缓存Fragment view @Override public

FragmentTabHost切换Fragment时避免重复加载UI

使用FragmentTabHost时,Fragment之间切换时每次都会调用onCreateView方法,导致每次Fragment的布局都重绘,无法保持Fragment原有状态. 解决办法:在Fragment onCreateView方法中缓存View 1 private View rootView;//缓存Fragment view 2 3 @Override 4 public View onCreateView(LayoutInflater inflater, ViewGroup conta