登录 注册
当前位置:主页 > 资源下载 > 48 > 一款小型的Android记账应用源代码

一款小型的Android记账应用源代码

  • 更新:2024-10-06 21:10:38
  • 大小:2.02MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:Android - 移动开发
  • 格式:ZIP

资源介绍

public void onCheckedChanged(RadioGroup group, int checkedId) { switch (checkedId) { // 记账选项 case R.id.jz: // new 一个意图 打开记账页面 Intent intent1 = new Intent(MainActivity.this, Tally.class); startActivity(intent1); break; // 查看选项 case R.id.ck_cost: // new 一个意图 打开查看花费页面 Intent intent2 = new Intent(MainActivity.this, LookCost.class); startActivity(intent2); break; // 分析选项 case R.id.ck_earn: // new 一个意图 打开查看收入告页面 Intent intent3 = new Intent(MainActivity.this, LookEarn.class); startActivity(intent3); break; // 更多选项 case R.id.gd: // new 一个意图 打开更多页面 Intent intent4 = new Intent(MainActivity.this, More.class); startActivity(intent4); break; default: break; } }