0

我有一个带有文本视图和按钮的布局,如下所示。

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    style="@style/info_layout">        

<TextView
    android:id="@+id/tv"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textSize="20sp"  />

<Button android:id="@+id/butn1"
    android:layout_gravity="center_horizontal"
    android:layout_marginTop="40dip"
    android:layout_width="150dip"
    android:layout_height="wrap_content" 
    android:gravity="center"
    android:text="@string/button1" />
</LinearLayout>

上面的布局适用于许多语言,但对于阿拉伯人来说,它会弹出抱歉的窗口,但如果我将 textSize 更改为 18sp,它就可以正常工作。即使我尝试在更改文本大小之前从按钮中删除边距,但问题仍然存在。我将在 java 文件中为文本视图设置文本。所以我不明白这个问题的确切原因是什么。

  01-08 03:09:59.959: E/AndroidRuntime(1803): java.lang.StringIndexOutOfBoundsException: length=75; regionStart=52; regionLength=-18
4

0 回答 0