我试图在一个textview中设置不同文本大小的html文本,但没有。
我试着这样:
textViewNextTime.setText(Html.fromHtml("<h2>4</h2><p>38</p>"));
我也尝试使用和标记,但没有成功。任何人都可以帮我创建一个带有这样文本的textView(没有圆圈):
修改:例如,4
的大小应与140sp
类似,:38
的大小应为70sp
< / p>
答案 0 :(得分:3)
如果您不需要使用html,可以尝试这样的事情:
String s= "4:38";
SpannableString ss1= new SpannableString(s);
ss1.setSpan(new RelativeSizeSpan(2f), 0, 1, 0); // set size
TextView tv= (TextView) findViewById(R.id.textview);
tv.setText(ss1);
答案 1 :(得分:0)
试试这个: 的 MainActivity.java 强>
public class MainActivity extends Activity {
private final String htmlText = "<body><h1>Heading Text</h1><p>This tutorial " +
"explains how to display " +
"<strong>HTML </strong>text in android text view. </p>" +
"<img src=\"hughjackman.jpg\">" +
"<blockquote>Example from <a href=\"www.javatechig.com\">" +
"Javatechig.com<a></blockquote></body>";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView htmlTextView = (TextView)findViewById(R.id.html_text);
htmlTextView.setText(Html.fromHtml(htmlText, new ImageGetter(), null));
}
private class ImageGetter implements Html.ImageGetter {
public Drawable getDrawable(String source) {
int id;
if (source.equals("hughjackman.jpg")) {
id = R.drawable.abc_ic_ab_back_mtrl_am_alpha;
}
else {
return null;
}
Drawable d = getResources().getDrawable(id);
d.setBounds(0,0,d.getIntrinsicWidth(),d.getIntrinsicHeight());
return d;
}
};
}
<强> activity_main.xml中强>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:orientation="vertical" >
<TextView
android:id="@+id/title_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Your HTML text Below"/>
<TextView
android:id="@+id/html_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>