博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MainActivity
阅读量:5243 次
发布时间:2019-06-14

本文共 2328 字,大约阅读时间需要 7 分钟。

package com.example.week; import android.os.Bundle; import android.support.v4.app.FragmentActivity; import android.support.v7.app.AppCompatActivity; import android.widget.FrameLayout; import android.widget.RadioButton; import android.widget.RadioGroup; public class MainActivity extends FragmentActivity {
private RadioGroup gr; private RadioButton shouye; private RadioButton xigua; private RadioButton wei; private RadioButton wode; private FrameLayout zhan; @Override protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); initView(); getSupportFragmentManager().beginTransaction().replace(R.id.zhan,new Fragment1()).commit(); gr.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override public void onCheckedChanged(RadioGroup group, int checkedId) {
switch (checkedId){
case R.id.shouye: getSupportFragmentManager().beginTransaction(). replace(R.id.zhan,new Fragment1()).commit(); break; case R.id.xigua: getSupportFragmentManager().beginTransaction(). replace(R.id.zhan, new Fragment2()).commit(); break; case R.id.wei: getSupportFragmentManager().beginTransaction(). replace(R.id.zhan,new Fragment3()).commit(); break; case R.id.wode: getSupportFragmentManager().beginTransaction(). replace(R.id.zhan,new Fragment4()).commit(); break; } } }); } private void initView() {
gr = (RadioGroup) findViewById(R.id.gr); shouye = (RadioButton) findViewById(R.id.shouye); xigua = (RadioButton) findViewById(R.id.xigua); wei = (RadioButton) findViewById(R.id.wei); wode = (RadioButton) findViewById(R.id.wode); zhan = (FrameLayout) findViewById(R.id.zhan); } }

转载于:https://www.cnblogs.com/wangwensheng/p/7966982.html

你可能感兴趣的文章
帧的最小长度 CSMA/CD
查看>>
xib文件加载后设置frame无效问题
查看>>
编程算法 - 左旋转字符串 代码(C)
查看>>
IOS解析XML
查看>>
Python3多线程爬取meizitu的图片
查看>>
树状数组及其他特别简单的扩展
查看>>
zookeeper适用场景:分布式锁实现
查看>>
110104_LC-Display(液晶显示屏)
查看>>
httpd_Vhosts文件的配置
查看>>
php学习笔记
查看>>
普通求素数和线性筛素数
查看>>
React Router 4.0 基本使用
查看>>
PHP截取中英文混合字符
查看>>
【洛谷P1816 忠诚】线段树
查看>>
电子眼抓拍大解密
查看>>
poj 1331 Multiply
查看>>
tomcat7的数据库连接池tomcatjdbc的25个优势
查看>>
Html 小插件5 百度搜索代码2
查看>>
P1107 最大整数
查看>>
多进程与多线程的区别
查看>>