a TextView
のコンテンツを太字、斜体、下線にしたい。次のコードを試してみましたが、機能しますが、下線が引かれていません。
<Textview android:textStyle="bold|italic" ..
どうすればいいのですか?簡単なアイデアはありますか?
a 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.setPaintFlags(Paint.UNDERLINE_TEXT_FLAG);
これにより、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" />
または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);
出力
new StyleSpan(Typeface.BOLD_ITALIC)
またはKotlinで次のように:
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);
シンプルで1行にしてください:)
paintFlags
必要?それなしでも動作します
太字と斜体の場合は、次のコードを使用してアンダースコアを使用するのが適切です。
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>
underline
にではなく、パスのヌル値を削除するにはnew UnderlineSpan()
content.setSpan(null, 0, content.length(), 0);
これは、他の設定を維持しながら、下線を追加する簡単な方法です。
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"
ファイルまたはネットワークからそのテキストを読んでいる場合。
あなたは言及されたようにあなたのテキストに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));
依存関係のbuildSpannedString{}
下でKotlinを使用すると、簡単にそれを実現できcore-ktx
ます。
val formattedString = buildSpannedString {
append("Regular")
bold { append("Bold") }
italic { append("Italic") }
underline { append("Underline") }
bold { italic {append("Bold Italic")} }
}
textView.text = formattedString