android-textview tag

10 questions


1 answers
134 views
0
How do I change the font of TextView on Android?

I'd like to change android:fontFamily on Android. I've never seen a predefined font on Android, so how do I choose one of the predefined fonts? I don't need to define my font, but I want to change it ...


1 answers
125 views
0
To output characters in a text view in a right alignment

I'd like to right-sort the letters in Android TextViewIn the Gravity property,android:gravity=rightI gave it to you like this, but it doesn't work. What did you do wrong?


1 answers
134 views
0
How do I add borders up and down in Android view?

I added attributes to android:drawableTop and android:drawablebottom like the code below to put a black border line on the text view, but the view itself turned black.<TextView android:background=@...


1 answers
71 views
0
How to create a border in a text view

Is it possible to draw a border around the text view?


1 answers
119 views
0
I'd like to put a link to the text view

<TextView android:layout_width=wrap_content android:layout_height=wrap_content android:text=@string/txtCredits android:autoLink=web android:id=@+id/infoTxtCredits android:layout_centerInParent=true...


1 answers
130 views
0
What does ems mean in Android text view?

If you look at the document,android:ems setEms(int)It looks like this. Makes the TextView be exactly this many ems wide.It's in English, but I don't know what it means.


1 answers
100 views
0
How do I print text with HTML grammar in a text view?

<h2>Title</h2><br><p>description here</p>I want to apply this code to the text view and print it out, what should I do?


1 answers
73 views
0
Style to apply the same bold italics are just as in the Text View.

Is there a way to apply bold or italic style to text view with java code instead of XML?Android:textStyle in xml.


1 answers
109 views
0
I want to give 20% transparency to the background on Android.

When I make a text view on Android, if there is a background color in the text view, I want to give it about 20% transparency. What should I do?


1 answers
95 views
0
Can I process it separately when I enter "Enter" in EditText?

If you type Enter while typing in EditText, I want to process it like an onSubmit event in HTML.Well, I'm trying to make it work like a move or an on-Submit when I click on the Done button on the virt...


© 2024 OneMinuteCode. All rights reserved.