开发遇到的low坑

RadioGroup使用遇到的总结

指定RadioButton选中

 RadioButton mainButton = (RadioButton) findViewById(R.id.rb_home_safety);
 mRadioGroup.check(mainButton.getID())

指定一个RadioButton页面

((RadioButton) mRadioGroup.findViewById(R.id.rb_home_safety)).setChecked(true);

取消所有RadioButton的选择状态

mRadioGroup.setOnCheckedChangeListener(null);
mRadioGroup.clearCheck();
mRadioGroup.setOnCheckedChangeListener(this);
mPager.setCurrentItem(0);

点击手机返回键,让app退到后台

OnBackPressed(){ moveTaskBack(false)}

fragment异常 【java.lang.IllegalStateException: Fragment(XXFragment) not attached to Activity异常】

  1. 出现该异常,是因为Fragment的还没有Attach到Activity时,调用了如getResource()等,需要上下文Content的函数。解决方法,就是等将调用的代码写在OnStart()中。
  2. 之前增加一个判断isAdded()。 【推荐第二个】

AlertDialog位于底部 全屏

View inflate = LayoutInflater.from(this).inflate(R.layout.dialog_currency,null);
                AlertDialog.Builder builder = new AlertDialog.Builder(this,  R.style.Dialog);
                final AlertDialog alertDialog = builder.setView(inflate).create();
                alertDialog.setCancelable(true);
                alertDialog.show();
                Window window = alertDialog.getWindow();
                window.setGravity(Gravity.BOTTOM);
                WindowManager m = getWindowManager();
                Display d = m.getDefaultDisplay();  //为获取屏幕宽、高
                android.view.WindowManager.LayoutParams params = alertDialog.getWindow().getAttributes();  //获取对话框当前的参数值、
                params.width = (int) (d.getWidth());    //宽度设置全屏宽度
                alertDialog.getWindow().setAttributes(params);     //设置生效



    <style name="Dialog">
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:windowFrame">@null</item>
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowIsFloating">true</item>
        <item name="android:windowIsTranslucent">true</item>
        <item name="android:windowContentOverlay">@null</item>
        <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
        <item name="android:windowFullscreen">true</item>
        <item name="android:backgroundDimEnabled">true</item>
    </style>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值