冰淇淋三明治中动态文字大小的变化

时间:2013-05-08 10:28:28

标签: android android-4.0-ice-cream-sandwich

我正在尝试在单击按钮时更改文本大小。 xml:

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"

    android:text="hello_world"

   android:textSize="30sp"
   android:layout_margin=""/>

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/textView1"
    android:layout_marginTop="72dp"
    android:layout_toLeftOf="@+id/textView1"
    android:text="Button1" />

<Button
    android:id="@+id/button2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@+id/button1"
    android:layout_toRightOf="@+id/textView1"
    android:text="Button2" />

这是我的代码:

    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    txtmain=(TextView)findViewById(R.id.textView1);
    txtmain.setTextSize(TypedValue.COMPLEX_UNIT_SP ,30);

    //txtmain.setTextSize(TypedValue.COMPLEX_UNIT_SP ,30);

    txtmain.setTextAppearance(getApplicationContext(), 12);
    btn1=(Button)findViewById(R.id.button1);
    btn2=(Button)findViewById(R.id.button2);
    txtmain.setBackgroundColor(Color.YELLOW);
    btn1.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {

            txtmain=(TextView)findViewById(R.id.textView1);


            txtmain.setTextSize(TypedValue.COMPLEX_UNIT_SP ,30);
            System.out.println("txtmain get height:"+txtmain.getHeight());
            //Toast.makeText(getApplicationContext(),"txtmain get 
            //height:"+txtmain.getHeight() , Toast.LENGTH_LONG).show();
        }
    });

    btn2.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {

            txtmain=(TextView)findViewById(R.id.textView1);

            txtmain.setTextSize(TypedValue.COMPLEX_UNIT_SP ,80);
            System.out.println("txtmain get height:"+txtmain.getHeight());
            //Toast.makeText(getApplicationContext(),"txtmain get 
             //height:"+txtmain.getHeight() , Toast.LENGTH_LONG).show();
        }
    });

当我点击按钮1时,它会给出正确的输出,但是当我点击button1输出更改后点击按钮2时。

这是我的输出:

enter image description here

enter image description here enter image description here

3 个答案:

答案 0 :(得分:1)

问题是

 txtmain.setHeight(41);

在第一个按钮单击中,因此它会将textview的高度从WRAP CONTENT更改为固定大小。只需删除它..

答案 1 :(得分:1)

这似乎与已知的ICS已知问题非常相似,请参阅https://code.google.com/p/android/issues/detail?id=22493https://code.google.com/p/android/issues/detail?id=17343。第二个建议解决方法是在文本视图中为文本添加“\ n”。阅读这些页面及其链接的页面可能有助于您解决问题。

答案 2 :(得分:0)

为什么在单击按钮1时设置文本框高度?