Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android:TextView height doesn't change after shrinking the font size

When I click on the button, the font size shrinks to 12. However, the result is :

enter image description here

main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/test"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="40sp"
        android:background="#80ff0000"
        android:text="@string/hello" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />

</LinearLayout>

java:

public class FontSizeTestActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        final TextView text = (TextView) findViewById(R.id.test);




        Button button1 = (Button) findViewById(R.id.button1);
        button1.setOnClickListener(new View.OnClickListener() {

            public void onClick(View v) {

                text.setTextSize(12);
            }
        });
    }
}

How do I shrink the height of the textView so that it only wraps the actual font?

like image 899
jclova Avatar asked Mar 02 '12 22:03

jclova


1 Answers

So, After a long search I have found a solution. Every time you set text do:

setText("I am a Text",TextView.BufferType.SPANNABLE);

Or after resizing your text just do:

setText(getText(),TextView.BufferType.SPANNABLE);
like image 199
dvircn Avatar answered Sep 30 '22 18:09

dvircn