XMLファイル内のテキストに下線を付けるにはどうすればよいですか?にオプションが見つかりませんtextStyle
。
textView.setText(Html.fromHtml("<u>"+"testest"+"</u>"));
XMLファイル内のテキストに下線を付けるにはどうすればよいですか?にオプションが見つかりませんtextStyle
。
textView.setText(Html.fromHtml("<u>"+"testest"+"</u>"));
回答:
文字列リソースのxmlファイル(HTMLタグをサポート)を使用している場合は<b> </b>
、<i> </i>
およびを使用して実行できます<u> </u>
。
<resources>
<string name="your_string_here">
This is an <u>underline</u>.
</string>
</resources>
コードから何かに下線を引きたい場合:
TextView tv = (TextView) view.findViewById(R.id.tv);
SpannableString content = new SpannableString("Content");
content.setSpan(new UnderlineSpan(), 0, content.length(), 0);
tv.setText(content);
お役に立てれば
<u>
たとえば、カスタムフォントを使用している場合など、タグを介した基盤が機能しない場合があります。ただし、プログラムによる基礎UnderlineSpan
は実際には失敗していません。そのため、最も信頼できるソリューションとしてお勧めします。
<u>
して<\u>
XMLで、それは十分です。
これを使って:
TextView txt = (TextView) findViewById(R.id.Textview1);
txt.setPaintFlags(txt.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
UnderlineSpan
です。
<resource>
<string name="your_string_here">This is an <u>underline</u>.</string>
</resources>
それが機能しない場合
<resource>
<string name="your_string_here">This is an <u>underline</u>.</string>
「<」がキーワードになる可能性があるためです。
そして表示するため
TextView textView = (TextView) view.findViewById(R.id.textview);
textView.setText(Html.fromHtml(getString(R.string.your_string_here)));
それを行う別の方法は、TextViewを拡張するカスタムコンポーネントを作成することです。下線付きの複数のTextViewが必要な場合に適しています。
コンポーネントのコードは次のとおりです。
package com.myapp.components;
import android.content.Context;
import android.support.v7.widget.AppCompatTextView;
import android.text.SpannableString;
import android.text.style.UnderlineSpan;
import android.util.AttributeSet;
public class LinkTextView extends AppCompatTextView {
public LinkTextView(Context context) {
this(context, null);
}
public LinkTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
public void setText(CharSequence text, BufferType type) {
SpannableString content = new SpannableString(text);
content.setSpan(new UnderlineSpan(), 0, content.length(), 0);
super.setText(content, type);
}
}
そしてそれをxmlで使用する方法:
<com.myapp.components.LinkTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Hello World!" />
Bhavinの回答を完了するため。たとえば、下線またはリダイレクトを追加します。
((TextView) findViewById(R.id.tv_cgu)).setText(Html.fromHtml(getString(R.string.upload_poi_CGU)));
<string name="upload_poi_CGU"><![CDATA[ J\'accepte les <a href="">conditions générales</a>]]></string>
ここで互換性のあるタグを知ることができます:http : //commonsware.com/blog/Android/2010/05/26/html-tags-supported-by-textview.html
以下のマークアップを使用できますが、に設定するtextAllCaps
とtrue
下線効果が削除されることに注意してください。
<resource>
<string name="my_string_value">I am <u>underlined</u>.</string>
</resources>
注意
マークアップを含む文字列(login_change_settings)でtextAllCapsを使用します。マークアップは大文字変換によって削除されます
textAllCapsテキスト変換は、CharSequenceでtoStringを呼び出すことになります。これは、などのマークアップを削除する最終的な効果があります。このチェックは、textAllCaps = trueも指定するマークアップを含む文字列の使用を検索します。
Android TextViewで下線付きのテキストを実現するには、さまざまな方法があります。
1. <u>This is my underlined text</u>
または
I just want to underline <u>this</u> word
2.プログラムで同じことができます。
`textView.setPaintFlags(textView.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);`
3. SpannableStringを作成し、それをTextViewテキストプロパティとして設定することで実行できます。
SpannableString text = new SpannableString("Voglio sottolineare solo questa parola");
text.setSpan(new UnderlineSpan(), 25, 6, 0);
textView.setText(text);
以下の方法を使用しましたが、うまくいきました。以下はボタンの例ですが、TextViewでも使用できます。
Button btnClickMe = (Button) findViewById(R.id.btn_click_me);
btnClickMe.setPaintFlags(btnClickMe.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
テキスト文字列を比較する場合、またはテキストが動的に変化する場合は、制約レイアウトでビューを作成できます。このビューは、このようにテキストの長さに応じて調整されます
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/txt_Previous"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginLeft="16dp"
android:layout_marginEnd="16dp"
android:layout_marginRight="16dp"
android:layout_marginBottom="8dp"
android:gravity="center"
android:text="Last Month Rankings"
android:textColor="@color/colorBlue"
android:textSize="15sp"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<View
android:layout_width="0dp"
android:layout_height="0.7dp"
android:background="@color/colorBlue"
app:layout_constraintEnd_toEndOf="@+id/txt_Previous"
app:layout_constraintStart_toStartOf="@+id/txt_Previous"
app:layout_constraintBottom_toBottomOf="@id/txt_Previous"/>
</android.support.constraint.ConstraintLayout>
public void setUnderLineText(TextView tv, String textToUnderLine) {
String tvt = tv.getText().toString();
int ofe = tvt.indexOf(textToUnderLine, 0);
UnderlineSpan underlineSpan = new UnderlineSpan();
SpannableString wordToSpan = new SpannableString(tv.getText());
for (int ofs = 0; ofs < tvt.length() && ofe != -1; ofs = ofe + 1) {
ofe = tvt.indexOf(textToUnderLine, ofs);
if (ofe == -1)
break;
else {
wordToSpan.setSpan(underlineSpan, ofe, ofe + textToUnderLine.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
tv.setText(wordToSpan, TextView.BufferType.SPANNABLE);
}
}
}
TextView tv = findViewById(R.id.tv);
tv.setText("some text");
setUnderLineText(tv, "some");
EditText、Button、CheckboxなどのTextView子もサポートします
お望みならば
-クリック可能な下線テキスト?
-TextViewの複数の部分に下線を引きますか?
style="text-decoration: underline;"