TextView
のコンテンツを太字、斜体、下線付きにします。私は以下のコードを試してみましたが、うまくいきますが、下線は引かれません。
<Textview Android:textStyle="bold|italic" ..
どうすればいいのですか?簡単なアイデアはありますか?
下線についてはわかりませんが、太字および斜体の場合、"bolditalic"
があります。ここで下線の言及はありません: http://developer.Android.com/reference/Android/widget/TextView.html#attr_Android:textStyle
あなたが必要とする言及されたbolditalic
を使うことをあなたに心に留めてください、そして私はそのページから引用
以下の定数値の1つ以上(「|」で区切られたもの)でなければなりません。
だからあなたはbold|italic
を使うでしょう
この質問で下線を確認することができます。 Androidレイアウトでテキストに下線を引くことはできますか。
これにより、TextViewの 太字 、 下線付きの とイタリックが同時に表示されます。
strings.xml
<resources>
<string name="register"><u><b><i>Copyright</i></b></u></string>
</resources>
この文字列をTextViewに設定するには、 main.xml でこれを行います。
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:id="@+id/textview"
Android:layout_width="fill_parent"
Android:layout_height="fill_parent"
Android:text="@string/register" />
またはIn Java 、
TextView textView = new TextView(this);
textView.setText(R.string.register);
動的テキストを使用する必要があるかもしれないときに時々上記のアプローチは役に立ちません。その場合は SpannableString が有効になります。
String tempString="Copyright";
TextView text=(TextView)findViewById(R.id.text);
SpannableString spanString = new SpannableString(tempString);
spanString.setSpan(new UnderlineSpan(), 0, spanString.length(), 0);
spanString.setSpan(new StyleSpan(Typeface.BOLD), 0, spanString.length(), 0);
spanString.setSpan(new StyleSpan(Typeface.ITALIC), 0, spanString.length(), 0);
text.setText(spanString);
_ output _
コトリンでそれともこのように:
val tv = findViewById(R.id.textViewOne) as TextView
tv.setTypeface(null, Typeface.BOLD_ITALIC)
// OR
tv.setTypeface(null, Typeface.BOLD or Typeface.ITALIC)
// OR
tv.setTypeface(null, Typeface.BOLD)
// OR
tv.setTypeface(null, Typeface.ITALIC)
// AND
tv.paintFlags = tv.paintFlags or Paint.UNDERLINE_TEXT_FLAG
またはJavaの場合:
TextView tv = (TextView)findViewById(R.id.textViewOne);
tv.setTypeface(null, Typeface.BOLD_ITALIC);
// OR
tv.setTypeface(null, Typeface.BOLD|Typeface.ITALIC);
// OR
tv.setTypeface(null, Typeface.BOLD);
// OR
tv.setTypeface(null, Typeface.ITALIC);
// AND
tv.setPaintFlags(tv.getPaintFlags()|Paint.UNDERLINE_TEXT_FLAG);
簡単に、そして一行で:)
太字とイタリック体のためにあなたがしていることはアンダースコアの使用のために正しいです次のコード
HelloAndroid.Java
package com.example.helloandroid;
import Android.app.Activity;
import Android.os.Bundle;
import Android.text.SpannableString;
import Android.text.style.UnderlineSpan;
import Android.widget.TextView;
public class HelloAndroid extends Activity {
TextView textview;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
textview = (TextView)findViewById(R.id.textview);
SpannableString content = new SpannableString(getText(R.string.hello));
content.setSpan(new UnderlineSpan(), 0, content.length(), 0);
textview.setText(content);
}
}
main.xml
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:id="@+id/textview"
Android:layout_width="fill_parent"
Android:layout_height="fill_parent"
Android:text="@string/hello"
Android:textStyle="bold|italic"/>
string.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">Hello World, HelloAndroid!</string>
<string name="app_name">Hello, Android</string>
</resources>
これは、他の設定を維持しながら下線を追加する簡単な方法です。
textView.setPaintFlags(textView.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
プログラム:
SetTypeface()メソッドを使用してプログラム的に実行できます。
以下はデフォルトの書体のコードです。
textView.setTypeface(null, Typeface.NORMAL); // for Normal Text
textView.setTypeface(null, Typeface.BOLD); // for Bold only
textView.setTypeface(null, Typeface.ITALIC); // for Italic
textView.setTypeface(null, Typeface.BOLD_ITALIC); // for Bold and Italic
あなたがカスタム書体を設定したい場合は:
textView.setTypeface(textView.getTypeface(), Typeface.NORMAL); // for Normal Text
textView.setTypeface(textView.getTypeface(), Typeface.BOLD); // for Bold only
textView.setTypeface(textView.getTypeface(), Typeface.ITALIC); // for Italic
textView.setTypeface(textView.getTypeface(), Typeface.BOLD_ITALIC); // for Bold and Italic
XML:
次のようにXMLファイルに直接設定できます。
Android:textStyle="normal"
Android:textStyle="normal|bold"
Android:textStyle="normal|italic"
Android:textStyle="bold"
Android:textStyle="bold|italic"
引用符なしで私のために働く:
<item name="Android:textStyle">bold|italic</item>
ファイルまたはネットワークからそのテキストを読んでいる場合。
あなたが言及したようにあなたのテキストにHTMLタグを追加することによってそれを達成することができます
This text is <i>italic</i> and <b>bold</b>
and <u>underlined</u> <b><i><u>bolditalicunderlined</u></b></i>
そして、HTML文字列を表示可能なスタイルのテキストに処理する _ html _ クラスを使用できます。
// textString is the String after you retrieve it from the file
textView.setText(Html.fromHtml(textString));
style="?android:attr/listSeparatorTextViewStyle