Hallo,
habe mal ne Frage zum Layout. Und zwar habe ich als Hintergrund einen Rahmen und möchte, dass der eingetragene Text beim Scrollen nicht über den Rahmen hinaus läuft, sondernpraktisch nur innerhalb des Rahmens angezeigt wird und "unter dem Rand verschwindet". Ist das irgendwie machbar ? Meine XML Datei sieht momentan so aus:
Code
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/hintergrundblaumetallic">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="50dp"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:layout_marginTop="50dp"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="@color/textinhalt"
/>
</LinearLayout>
</ScrollView>
Alles anzeigen
Was muss ich ändern, um das oben beschriebene zu erreichen ? Danke im Voraus .