Android中的一些使用技巧
2016-05-20 本文已影响3107人
天神Deity
我们在使用TextView显示内容的过程中,经常遇到需要显示的内容只有少许参数需要改变,比如:
距离过年还有xx天xx时xx秒,当我们在更新TextView的内容时,一般是这么写的:
TextView mTextView = this.findViewById(R.id.mTextView);
mTextView.setText("距离过年还有"+mDay+"天"+mMinute+"时"+mSecond+"秒");
如果你是用Android Studio开发的话,那么它应该送你以下的警告:
Do not concatenate text displayed with setText,use resource string with placeholders
[撇脚翻译:应使用资源字符串来显示文本占位符],这里所说的就是mDay、mMinute、mSecond这些变量了。
当然对于这些警告我们其实可以不理它们,它只是告诉我们这样写不规范,但如果我们要消除这个警告,
可以使用以下的实现:
string.xml中的资源声明
<string name="delay_time">距离过年还有%1$d天%2$d时%3$d秒</string>
在代码中的使用:
mTextView.setText(String.format(getResources().getString(R.string.delay_time),mDay,mMinute,mSecond));
常用格式:
%n$s--->n表示目前是第几个参数 (比如%1$s中的1代表第一个参数),s代表字符串
%n$d--->n表示目前是第几个参数 (比如%1$d中的1代表第一个参数),d代表整数
%n$f--->n表示目前是第几个参数 (比如%1$f中的1代表第一个参数),f代表浮点数
RadioButton设置默认选中
RadioButton 设置默认选中的效果不能使用
android:checked=true
以上代码会导致点击其他RadioButton后,会出现多个RadioButton被选中的情况,应该使用
<RadioGroup
....
android:checkbutton="@+id/radio_btn_1"
....>
<RadioButton
.....
android:id="@+id/radion_btn_1"
...../>
......
</RadioGroup>
这样ID=radio_btn_1的radiobutton就会默认被选中
TextView 中Html 特效
<string name="msg_account_data"><DATA><![CDATA[<b><font color="red">%1$S</font></b>]]></DATA></string>
使用:
mTextView.setText(Html.fromHtml(String.format(I18NData.getI18NString(R.string.msg_account_data), SizeUtils.moneyFenToYuan(amount))));
给Activity页面加上返回按钮
使用android:parentActivityName可以给页面加上返回按钮
<activity android:name=".activity.SettingActivity"
android:label="@string/set_up"
android:parentActivityName=".activity.SettingActivity"/>
去除ActionBar
style.xml
<style name="AppTheme.NoActionBar">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
</style>
使用:
<activity
...
android:theme="@style/AppTheme.NoActionBar">
</activity>