21 RadioGroup ListFragment
- 结构
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的更多相关文章
- 21 ViewPager RadioGroup
结构 MainActivity.java package com.qf.day21_viewpagerfragmentrg_demo4; import java.util.ArrayList; imp ...
- Android RadioGroup和RadioButton详解
实现RadioButton由两部分组成,也就是RadioButton和RadioGroup配合使用.RadioGroup是单选组合框,可以容纳多个RadioButton的容器.在没有RadioGrou ...
- RadioGroup实现导航栏
[声明] 欢迎转载,但请保留文章原始出处→_→ 生命壹号:http://www.cnblogs.com/smyhvae/ 文章来源:http://www.cnblogs.com/smyhvae/p/ ...
- 无废话ExtJs 入门教程十[单选组:RadioGroup、复选组:CheckBoxGroup]
无废话ExtJs 入门教程十[单选组:RadioGroup.复选组:CheckBoxGroup] extjs技术交流,欢迎加群(201926085) 继上一节内容,我们在表单里加了个一个单选组,一个复 ...
- android自定义RadioGroup实现可以添加多种布局
android自带的RadioGroup是继承自LinearLayout,如果布局的时候不是直接写radiobutton,即radiobutton外面还包了一层容器,这时分组是不成功的,因为查找不到r ...
- Android控件系列之RadioButton&RadioGroup(转)
学习目的: 1.掌握在Android中如何建立RadioGroup和RadioButton 2.掌握RadioGroup的常用属性 3.理解RadioButton和CheckBox的区别 4.掌握Ra ...
- fragment做成选项卡,tab效果。 fragment+RadioGroup
fragment做成选项卡,tab效果. fragment+RadioGroup from://http://blog.csdn.net/zimo2013/article/details/122393 ...
- Android学习之RadioGroup和RadioButton
转载自:http://my.oschina.net/amigos/blog/59261 实现RadioButton由两部分组成,也就是RadioButton和RadioGroup配合使用.RadioG ...
- 如何使用RadioGroup和RadioButton实现FragmentTabHost导航效果?
目录: 一.概述 最近在做一个新闻类结合社区的APP的时候,需要添加一个侧滑菜单的效果,考虑到可以使用DrawerLayout布局,但是问题是使用了 DrawerLayout布局后,主页内容应该是一个 ...
随机推荐
- [TJOI 2013]拯救小矮人
Description 一群小矮人掉进了一个很深的陷阱里,由于太矮爬不上来,于是他们决定搭一个人梯.即:一个小矮人站在另一小矮人的 肩膀上,知道最顶端的小矮人伸直胳膊可以碰到陷阱口.对于每一个小矮人, ...
- [AH/HNOI2017]抛硬币
题目描述 小 A 和小 B 是一对好朋友,他们经常一起愉快的玩耍.最近小 B 沉迷于**师手游,天天刷本,根本无心搞学习.但是已经入坑了几个月,却一次都没有抽到 SSR,让他非常怀疑人生.勤勉的小 A ...
- Set 集合
[题目描述]现在给你一些连续的整数,它们是从 A 到 B 的整数.一开始每个整数都属于各自的集合,然后你需要进行如下操作:每次选择两个属于不同集合的整数,如果这两个整数拥有大于等于 P 的公共质因数, ...
- 【USACO17JAN】Promotion Counting晋升者计数 线段树+离散化
题目描述 The cows have once again tried to form a startup company, failing to remember from past experie ...
- 12563 Jin Ge Jin Qu hao
• Don’t sing a song more than once (including Jin Ge Jin Qu). • For each song of length t, either si ...
- 树莓派超声波测距+蜂鸣器(c语言)
前边我们已经详细的讲解了树莓派控制超声波模块测距(http://www.cnblogs.com/yuemo/p/8888342.html)和超声波控制蜂鸣器模块发声(http://www.cnblog ...
- win7+Apache 设置域名指向本地文件夹
实现:浏览器地址栏输入 www.bnzoo.com 访问 D:/www 系统:win7旗舰版+Apache 步骤: 1.打开文件 C:\Windows\System32\drivers\etc\hos ...
- input中v-model和value不能同时调用时解决方案
<input type="text" v-model="keyWord" value="请输入地名地址" > 当使用如上代码时, ...
- Oracle10g以上sysaux表空间的维护和清理
SYSAUX表空间在Oracle 10g中引入,其作为SYSTEM表空间的辅助表空间.之前,一些使用独立表空间或系统表空间的数据库组件,现在SYSAUX表空间中存在.通过分离这些组件,减轻了SYSTE ...
- ref string
string pics=""; pSub.GetSubjectContent(pddm,ref pics); public string GetSubjectContent(st ...