好的,所以我熟悉如何更改字体类型等以进行 android 开发。但是,我找不到用这个例子做的方法。
string.xml 的代码...
<string-array name="help_labels">
<item> item 1</item>
<item> item 2</item>
<item> item 3</item>
<item> item 4</item>
</string-array>
<string-array name="help_txt">
<item> item 1 description: blah blah blah blah</item>
<item> item 2 description: blah blah blah blah</item>
<item> blah blah blah blah</item>
<item> blah blah blah blah</item>
</string-array>
xml布局...
<TextView
android:text="TextView"
android:id="@+id/helpDetailText"
android:cacheColorHint="#00000000"
android:background="@layout/rectangle_border"
android:textColor="@color/black1"
android:padding="10dp"
android:textSize="17.0sp"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</TextView>
Java代码..
public static final String HELP_TEXT = "helpText";
item = getIntent().getExtras().getSerializable(HELP_TEXT);
TextView helpDetailText = (TextView) findViewById(R.id.helpDetailText);
if (item != null) {
if (isHtmlHelpText) {
helpDetailText.setText(Html.fromHtml(item.toString()).toString());
} else {
helpDetailText.setText(item.toString());
}
}
我正在尝试做的..
所以基本上标签会导致每个项目的详细信息页面。我似乎找不到在描述中更改字体类型的方法。我想在每个段落之前用粗体标题组织段落。这看起来很简单(而且可能很简单),但我想不通。我尝试了html
标签(<b> label </b>
),但也没有用。