Skip to main content

TextView bold via xml file?

TextView bold via xml file? 


A1.

         following TextView :

   <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"

android:textStyle="bold"

android:text="@string/app_name" android:layout_gravity="center" />

A2.

       Just you need to use

   //for bold
   android:textStyle="bold"

  //for italic
  android:textStyle="italic"

  //for normal
  android:textStyle="normal"

   <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textStyle="bold"
    android:text="@string/userName"
    android:layout_gravity="left"
    android:textSize="16sp"
   />

A3.just

         android:textStyle="bold"


Comments

  1. Gambling in the USA - JT Hub
    Gambling in the USA: Exploring legal 이천 출장샵 online gambling and online gambling. 안산 출장샵 Gambling has exploded in popularity, with states 경산 출장마사지 across the US now 순천 출장마사지 embracing legal 세종특별자치 출장샵

    ReplyDelete

Post a Comment

Popular posts from this blog

Reset Android textview maxlines ?

Reset Android textview maxlines  ? A1.         Actually, the way android platform does that is by setting the MaxLine to                                            Integer.MAX_VALUE. textView . setMaxLines ( Integer . MAX_VALUE );        also, if you are using Ellipsize, don't forget to set to null. textView . setEllipsize ( null );       just check how the android framework do just that ;) watch the                                                              setMaxLines(Integer.MAX_VALUE); private void applySingleLine ( boolean singleLine , boolean applyTransformation ) { mSingleLine = singleLine ; if ( singleLine ) { ...

Android set the gravity for a TextView programmatically

Android set the gravity for a TextView programmatically  A1.        This will center the text in a text view: TextView ta = ( TextView ) findViewById ( R . layout . text_view ); LayoutParams lp = new LayoutParams (); lp . gravity = Gravity . CENTER_HORIZONTAL ; ta . setLayoutParams ( lp ); A2.      textView . setGravity ( Gravity . CENTER | Gravity . BOTTOM ); A3.              Use this code TextView textView = new TextView ( YourActivity . this ); textView . setGravity ( Gravity . CENTER | Gravity . TOP ); textView . setText ( "some text

Android and   in TextView ?

Android and &nbsp; in TextView ? A1.            The TextView should respect the non breaking space <string name = "test" > Hello&#160;world </string>                                     or new TextView ( "Hello\u00A0world" ); A2.      One unique situation I ran into was adding a non-breaking space to a string resource that took               String.format parameters. <resources> <string name = "answer_progress" formatted = "false" > Answered %d of %d </string> </resources>       I tried to simply copy and past the non-breaking space character into the string and it was                     replaced       with a regular old space after compilin...