TextView 字符串资源里的变量替换 在 xml 中定位占位符(其中1
表示第一个变量,多个变量递增表示)
1 2 <string name ="replace_str" > 你好,%1$s:欢迎您!</string >
java 代码中动态指定%1$s
处的值
1 String str = getString(R.string.replace_str, "小明" );
使用 HTML 格式化文本 1 textView.setText(Html.fromHtml(HTML_STR));
跑马灯效果不生效 需要在代码中设置tv.setSelected(true)
TextView Marquee not working
外部链接
TextView 设置空格 1              
TextView html 渲染(注意:html 渲染的方式无法改变字体的大小,可以调整颜色、粗细、斜体等属性) 1 2 3 4 5 6 7 public static void renderWithHtml (final TextView tv, String data) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { tv.setText(Html.fromHtml(data, Html.FROM_HTML_MODE_COMPACT)); } else { tv.setText(Html.fromHtml(data)); } }
TextView 渲染字体
Android TextView 个别字体格式设置小结 - 简书
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 SpannableString msp = new SpannableString ("字体测试字体大小一半两倍前景色背景色正常粗体斜体粗斜体下划线删除线x1x2电话邮件网站短信彩信地图X轴综合" );msp.setSpan(new TypefaceSpan ("monospace" ), 0 , 2 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new TypefaceSpan ("serif" ), 2 , 4 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new AbsoluteSizeSpan (20 ), 4 , 6 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new AbsoluteSizeSpan (20 , true ), 6 , 8 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new RelativeSizeSpan (0.5f ), 8 , 10 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new RelativeSizeSpan (2.0f ), 10 , 12 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new ForegroundColorSpan (Color.MAGENTA), 12 , 15 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new BackgroundColorSpan (Color.CYAN), 15 , 18 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new StyleSpan (android.graphics.Typeface.NORMAL), 18 , 20 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new StyleSpan (android.graphics.Typeface.BOLD), 20 , 22 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new StyleSpan (android.graphics.Typeface.ITALIC), 22 , 24 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new StyleSpan (android.graphics.Typeface.BOLD_ITALIC), 24 , 27 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new UnderlineSpan (), 27 , 30 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new StrikethroughSpan (), 30 , 33 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new SubscriptSpan (), 34 , 35 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new SuperscriptSpan (), 36 , 37 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new URLSpan ("tel:4155551212" ), 37 , 39 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new URLSpan ("mailto:webmaster@google.com" ), 39 , 41 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new URLSpan ("http://www.baidu.com" ), 41 , 43 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new URLSpan ("sms:4155551212" ), 43 , 45 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new URLSpan ("mms:4155551212" ), 45 , 47 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new URLSpan ("geo:38.899533,-77.036476" ), 47 , 49 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); msp.setSpan(new ScaleXSpan (2.0f ), 49 , 51 , Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); tokenTv.setText(msp); tokenTv.setMovementMethod(LinkMovementMethod.getInstance());
ImageView 交叉使用 mipmap 和 drawable 钻牛角尖:先必须获取到之前的 Drawable,然后将这个 Drawable 进行转换,然后进行图片替换; 解决思路:通过覆盖的单向方式,而不用知道之前是图片资源还是 Drawable 资源。
1 2 3 4 5 6 ImageView ivMain = findViewById(R.id.iv_main);if (满足条件){ ivMain.setBackgroundResource(R.id.selected); } else { ivMain.setBackgroundResource(R.id.unselected); }
ImageView 加载 GIF 图片 代码
1 2 3 4 5 ImageView iv = (ImageView) findViewById(R.id.vp_iv);Glide .with(this ) .load("https://i.imgur.com/l9lffwf.gif" ) .into(iv);
外部链接
加载网络图片 代码
1 2 3 4 5 Picasso .with(this ) .load("https://i.imgur.com/l9lffwf.gif" ) .placeholder(R.mipmap.ic_launcher) .into(iv);
外部链接
EditText 定位光标位置: 1 2 3 String name = "Lou" ;EditText et = (EditText)findViewById(R.id.et_name);et.setSelection(name.length());
使光标颜色和文字颜色保持一致(EditText 不显示光标问题): 1 2 3 android:textCursorDrawable="@null"
外部链接
ListView ListView 中不可见的元素,其对应的 view 为 null。这是容易理解的,性能优化。 (在 updateItem 的时候要做两方面的处理,即数据(updateItemData)和视图(updateItemView))
添加空白
在 ListView 的顶部和底部添加空白(见外部链接)
在 Item 之间添加空白(通过 Divider 的方式)
代码 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 <?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:background ="@color/alarm_bg" android:orientation ="vertical" > <ListView android:id ="@+id/lv_main" android:layout_width ="match_parent" android:layout_height ="match_parent" android:paddingTop ="16dp" android:paddingBottom ="16dp" android:clipToPadding ="false" android:scrollbars ="none" android:divider ="@android:color/transparent" android:dividerHeight ="10dp" /> </LinearLayout >
外部链接
修改 DatePicker 日期选择器默认样式(同理适用于 TimePicker) 效果图
代码 1 2 3 4 5 6 <DatePicker android:id ="@+id/dialog_personal_birth_dp" style ="@android:style/Widget.Holo.DatePicker" android:layout_width ="match_parent" android:layout_height ="wrap_content" />
1 2 3 4 5 6 7 8 9 private String mBirth = "1981.12.11" ;final DatePicker dp = dialogBirth.getView(R.id.dialog_personal_birth_dp);dp.setCalendarViewShown(false ); Uview.changeTimePickerSepColor(dp, Color.DKGRAY); String[] birth = mBirth.split("\\." ); dp.init(Integer.parseInt(birth[0 ]), Integer.parseInt(birth[1 ]) - 1 , Integer.parseInt(birth[2 ]), null );
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 public static void changeTimePickerSepColor (ViewGroup group, int color) { for (NumberPicker np : getNumberPickers(group)) { changeNumberPickerSepColor(np, color); } } private static List<NumberPicker> getNumberPickers (ViewGroup group) { List<NumberPicker> lists = new ArrayList <NumberPicker>(); if (group == null ) { return lists; } for (int i = 0 ; i < group.getChildCount(); i++) { View v = group.getChildAt(i); if (v instanceof NumberPicker) { lists.add((NumberPicker) v); } else if (v instanceof LinearLayout) { List<NumberPicker> ls = getNumberPickers((ViewGroup) v); if (ls.size() > 0 ) { return ls; } } } return lists; } public static void changeNumberPickerSepColor (NumberPicker np, int color) { Field[] pickerFields = NumberPicker.class.getDeclaredFields(); for (Field f : pickerFields) { if (f.getName().equals("mSelectionDivider" )) { try { f.setAccessible(true ); f.set(np, new ColorDrawable (color)); } catch (Exception e) { e.printStackTrace(); } break ; } } for (Field f : pickerFields) { if (f.getName().equals("mSelectionDividerHeight" )) { try { f.setAccessible(true ); f.set(np, 1 ); } catch (Exception e) { e.printStackTrace(); } break ; } } }
给 imageview 设置 tag 值来传值 ivSetting.setTag(room.getId()); 这样在进入设置界面时,可以通过 getTag 的方式获取到 room 的 id。
http://www.vogella.com/tutorials/Retrofit/article.html#create-activity
主题中使用 tint 会导致 imageview 显示空白 1 <item name ="android:tint" > #ffffff</item >