我正在测试以下代码(由Chase开发)link-> Auto Scale TextView Text to Fit within Bounds并且代码在Android 2x-3x上运行完美但在4x上运行不起作用 . 由于某种原因,我不能直接将评论放到Chase帖子上,所以我决定打开新的流..这会有所帮助如果任何人可以建议为什么代码停止在Android 4x上工作?我试着自己但没有任何东西:( . 要运行代码,我使用以下布局:

<?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" >
           <chase.test.com.AutoResizeTextView
               android:id="@+id/resizingText"
               android:textSize = "250sp"
               android:gravity = "center"
               android:text = "1 B C  abc d abcd1 abcd2 abcd3 abcd4 abcd5 abcd6 abcd7" 
               android:layout_width="fill_parent"
               android:layout_height="wrap_content"
               android:layout_weight="1"
           />
    </LinearLayout>