Wie Lösen Form rund Rechteck zu groß ist, um dargestellt werden zu einer textur in android TextBox

Ich Eine Form erstellen für die Text-Ansicht Hintergrund

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
    android:startColor="#800e1520"
    android:endColor="#801e252f"
    android:angle="45"/>
<padding android:left="7dp"
    android:top="7dp"
    android:right="7dp"
    android:bottom="7dp" />
<corners android:radius="8dp" />

und meine textview ist :

 <TextView
        android:id="@+id/textView1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_below="@+id/rel1"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="8dp"
        android:background="@drawable/rounded_corners"
        android:gravity="right"
        android:lineSpacingExtra="6dp"
        android:supportsRtl="true"
        android:text="@string/hello_world"
        android:textColor="#FFFFFF" />

wenn der text kurz ist wie dieser Wie Lösen Form rund Rechteck zu groß ist, um dargestellt werden zu einer textur in android TextBox

aber wenn der text zu groß ist, zeigt nicht hintergrund und eclipse logcat anzeigen

Shape round rect too large to be rendered into a texture (424x5884, max=2048x2048)

wie es zu lösen?
danke

Schreibe einen Kommentar