我正在测试以下代码(由 Chase 开发)链接-> 自动缩放 TextView 文本以适应边界 ,该代码在 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>