Questions tagged «spannable»

3
具有不同textSize的TextView
是否可以在一个TextView中设置不同的textSize?我知道我可以使用以下方式更改文字样式: TextView textView = (TextView) findViewById(R.id.textView); Spannable span = new SpannableString(textView.getText()); span.setSpan(arg0, 1, 10, arg3); textView.setText(span) 我知道范围的开始...要更改大小的文本的结尾。但是,我可以将asarg0和as用作arg3什么?

8
如何使用自定义字体设置Spannable对象字体
我有一个Spannable对象,我想通过之前加载的自定义字体设置其字体。 Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/font_Name.ttf"); Spannable span1 = /*Spannable Item*/; /// I want to set span1 to have tf font face??? /// Here where I want help. 编辑: 我的问题是我想为文本视图设置两种不同的自定义字体,所以我正在使用Spannable

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.