• 结构

MainActivity.java

package com.qf.day21_radiogroupfragment_demo3;

import java.util.ArrayList;
import java.util.List; import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentTransaction;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.RadioGroup.OnCheckedChangeListener; public class MainActivity extends FragmentActivity { private RadioGroup rgMain; //Fragment数据源
private List<Fragment> list = new ArrayList<Fragment>(); private RadioButton[] rbs; private String[] titles={"news","happy","dz","cj"}; private int currentIndex =0;//当前展示的Fragment @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main); rgMain = (RadioGroup) findViewById(R.id.rg_main); initData();
initTab();
} //初始化标签
private void initTab(){
//改变标签内容
rbs = new RadioButton[rgMain.getChildCount()];
for(int i=0;i<rgMain.getChildCount();i++){
rbs[i] = (RadioButton) rgMain.getChildAt(i);
rbs[i].setText(titles[i]);
} //点击按钮进行替换
rgMain.setOnCheckedChangeListener(new OnCheckedChangeListener() { @Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
// TODO Auto-generated method stub
for(int i=0;i<rgMain.getChildCount();i++){
if(rbs[i].getId() == checkedId){//当前按钮被点击
//开始替换
//replaceFragment(i);
switchFragment(i);
} }
}
}); }
//replace 缺点 影响性能
public void replaceFragment(int index){
MyFragment myFragment = MyFragment.getInstance(index+1);
getSupportFragmentManager().
beginTransaction().
replace(R.id.layout_content_id, list.get(index)).commit(); } //替换 使用 show() 和hide() 方法 减少性能开销
public void switchFragment(int targetIndex){ FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); //点击的Fragment(目标)
Fragment targetFragment = list.get(targetIndex);
//当前的Fragment
Fragment currentFragment = list.get(currentIndex); //点击的 按钮对象的Fragment 存在 show()展示出来 隐藏当前的Fragment
if(!targetFragment.isAdded()){
transaction.add(R.id.layout_content_id, targetFragment).hide(currentFragment).commit();
}else{
transaction.show(targetFragment).hide(currentFragment).commit();
} //当前展示的Fragment就是点击替换的Fragment
currentIndex = targetIndex; } //初始化数据
private void initData(){
for(int i=0;i<rgMain.getChildCount();i++){
MyFragment myFragment = MyFragment.getInstance(i+1);
list.add(myFragment);
}
//程序运行 默认展示第一个Fragment
getSupportFragmentManager().
beginTransaction().
add(R.id.layout_content_id, list.get(0)).commit();
} }

MyFragment.java

package com.qf.day21_radiogroupfragment_demo3;

import java.util.ArrayList;
import java.util.List; import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentTransaction;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.RadioGroup.OnCheckedChangeListener; public class MainActivity extends FragmentActivity { private RadioGroup rgMain; //Fragment数据源
private List<Fragment> list = new ArrayList<Fragment>(); private RadioButton[] rbs; private String[] titles={"news","happy","dz","cj"}; private int currentIndex =0;//当前展示的Fragment @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main); rgMain = (RadioGroup) findViewById(R.id.rg_main); initData();
initTab();
} //初始化标签
private void initTab(){
//改变标签内容
rbs = new RadioButton[rgMain.getChildCount()];
for(int i=0;i<rgMain.getChildCount();i++){
rbs[i] = (RadioButton) rgMain.getChildAt(i);
rbs[i].setText(titles[i]);
} //点击按钮进行替换
rgMain.setOnCheckedChangeListener(new OnCheckedChangeListener() { @Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
// TODO Auto-generated method stub
for(int i=0;i<rgMain.getChildCount();i++){
if(rbs[i].getId() == checkedId){//当前按钮被点击
//开始替换
//replaceFragment(i);
switchFragment(i);
} }
}
}); }
//replace 缺点 影响性能
public void replaceFragment(int index){
MyFragment myFragment = MyFragment.getInstance(index+1);
getSupportFragmentManager().
beginTransaction().
replace(R.id.layout_content_id, list.get(index)).commit(); } //替换 使用 show() 和hide() 方法 减少性能开销
public void switchFragment(int targetIndex){ FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); //点击的Fragment(目标)
Fragment targetFragment = list.get(targetIndex);
//当前的Fragment
Fragment currentFragment = list.get(currentIndex); //点击的 按钮对象的Fragment 存在 show()展示出来 隐藏当前的Fragment
if(!targetFragment.isAdded()){
transaction.add(R.id.layout_content_id, targetFragment).hide(currentFragment).commit();
}else{
transaction.show(targetFragment).hide(currentFragment).commit();
} //当前展示的Fragment就是点击替换的Fragment
currentIndex = targetIndex; } //初始化数据
private void initData(){
for(int i=0;i<rgMain.getChildCount();i++){
MyFragment myFragment = MyFragment.getInstance(i+1);
list.add(myFragment);
}
//程序运行 默认展示第一个Fragment
getSupportFragmentManager().
beginTransaction().
add(R.id.layout_content_id, list.get(0)).commit();
} }

selecte_main.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_checked="true" android:drawable="@android:drawable/ic_menu_add"></item>
<item android:state_checked="false" android:drawable="@android:drawable/ic_menu_call"></item> </selector>

activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" > <RadioGroup
android:id="@+id/rg_main"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" > <RadioButton
android:id="@+id/rb1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:button="@null"
android:drawableTop="@drawable/selecte_main"
android:gravity="center"
android:checked="true"
android:text="新闻" /> <RadioButton
android:id="@+id/rb2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:button="@null"
android:drawableTop="@drawable/selecte_main"
android:gravity="center"
android:text="娱乐" /> <RadioButton
android:id="@+id/rb3"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:button="@null"
android:drawableTop="@drawable/selecte_main"
android:gravity="center"
android:text="体育" /> <RadioButton
android:id="@+id/rb4"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:button="@null"
android:drawableTop="@drawable/selecte_main"
android:gravity="center"
android:text="财经" />
</RadioGroup> <FrameLayout
android:id="@+id/layout_content_id"
android:layout_width="match_parent"
android:layout_height="match_parent"
></FrameLayout> </LinearLayout>

fragment_layout.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" > <TextView
android:id="@+id/tv_show"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#f00"
android:text="AAA"
/>
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
></ListView> </LinearLayout>

item.xml

<?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"
>
<ImageView
android:id="@+id/iv_item"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher"
/>
<TextView
android:id="@+id/title_item"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/iv_item"
android:text="name"
/>
<TextView
android:id="@+id/content_item"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/iv_item"
android:text="aaa"
android:layout_alignBottom="@id/iv_item"
/> </RelativeLayout>

21 RadioGroup ListFragment的更多相关文章

  1. 21 ViewPager RadioGroup

    结构 MainActivity.java package com.qf.day21_viewpagerfragmentrg_demo4; import java.util.ArrayList; imp ...

  2. Android RadioGroup和RadioButton详解

    实现RadioButton由两部分组成,也就是RadioButton和RadioGroup配合使用.RadioGroup是单选组合框,可以容纳多个RadioButton的容器.在没有RadioGrou ...

  3. RadioGroup实现导航栏

    ​[声明] 欢迎转载,但请保留文章原始出处→_→ 生命壹号:http://www.cnblogs.com/smyhvae/ 文章来源:http://www.cnblogs.com/smyhvae/p/ ...

  4. 无废话ExtJs 入门教程十[单选组:RadioGroup、复选组:CheckBoxGroup]

    无废话ExtJs 入门教程十[单选组:RadioGroup.复选组:CheckBoxGroup] extjs技术交流,欢迎加群(201926085) 继上一节内容,我们在表单里加了个一个单选组,一个复 ...

  5. android自定义RadioGroup实现可以添加多种布局

    android自带的RadioGroup是继承自LinearLayout,如果布局的时候不是直接写radiobutton,即radiobutton外面还包了一层容器,这时分组是不成功的,因为查找不到r ...

  6. Android控件系列之RadioButton&RadioGroup(转)

    学习目的: 1.掌握在Android中如何建立RadioGroup和RadioButton 2.掌握RadioGroup的常用属性 3.理解RadioButton和CheckBox的区别 4.掌握Ra ...

  7. fragment做成选项卡,tab效果。 fragment+RadioGroup

    fragment做成选项卡,tab效果. fragment+RadioGroup from://http://blog.csdn.net/zimo2013/article/details/122393 ...

  8. Android学习之RadioGroup和RadioButton

    转载自:http://my.oschina.net/amigos/blog/59261 实现RadioButton由两部分组成,也就是RadioButton和RadioGroup配合使用.RadioG ...

  9. 如何使用RadioGroup和RadioButton实现FragmentTabHost导航效果?

    目录: 一.概述 最近在做一个新闻类结合社区的APP的时候,需要添加一个侧滑菜单的效果,考虑到可以使用DrawerLayout布局,但是问题是使用了 DrawerLayout布局后,主页内容应该是一个 ...

随机推荐

  1. [JLOI 2012]树

    Description 在这个问题中,给定一个值S和一棵树.在树的每个节点有一个正整数,问有多少条路径的节点总和达到S.路径中节点的深度必须是升序的.假设节点1是根节点,根的深度是0,它的儿子节点的深 ...

  2. 51 nod 1405 树的距离之和

    1405 树的距离之和 基准时间限制:1 秒 空间限制:131072 KB 分值: 40 难度:4级算法题   给定一棵无根树,假设它有n个节点,节点编号从1到n, 求任意两点之间的距离(最短路径)之 ...

  3. java开发笔记——表映射实体类代码示例

    package com.special.ipmsdm; import java.io.Serializable; import javax.persistence.Column; import jav ...

  4. Python中生成器和迭代器的功能介绍

    生成器和迭代器的功能介绍 1. 生成器(generator) 1. 赋值生成器 1. 创建 方法:x = (variable for variable in iterable) 例如:x = (i f ...

  5. Spring之定时器(QuartzJobBean)的实现

      需求:做个分配任务的功能模块,在任务截止前的十五分钟进行提醒(发送邮件.短信.系统提醒).每隔五分钟提醒一次,直到任务完成! 想法:刚开始是想着是不是可以做个监听器,监听截止时间.当时间到了开始进 ...

  6. ArrayList add方法的实现之扩容

    初探ArrayList的1.5倍扩容 add方法是通过在list的尾部追加元素的方法,添加数据的. 其中,调用了一个叫ensureCapacityInternal方法,实现list的容量换算等: 注意 ...

  7. MySQL的Explain关键字查看是否使用索引

    explain显示了MySQL如何使用索引来处理select语句以及连接表.可以帮助选择更好的索引和写出更优化的查询语句.简单讲,它的作用就是分析查询性能. explain关键字的使用方法很简单,就是 ...

  8. nginx模块,模块的配置使用

    nginx模块官方模块(默认支持的)第三方模块 1. --with-http_stub_status_module nginx的客户端状态 配置syntax: sub_status;default:- ...

  9. UDP网络编程

    概念: UDP协议(用户数据报协议)是无连接,不可靠的,无序的.速度比较快, UDP协议以数据报作为数据传输的载体 进行数据传输时,首先将传输的数据定义成数据报(Datagram),在数据报中指明数据 ...

  10. Linux下查看alert日志文件的两种方法

    --linux下查看alert日志文件的两种方法: --方法1: SQL> show parameter background_dump_dest; NAME TYPE VALUE ------ ...