我正在测试以下代码(由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>