Hey,
wie bekomme ich durch Code dynamisch erstellte Textfenster etc. (Wenn man eins kann geht der Rest auch ) in ein im xml Code vorgegebenes LinearLayout.
Importiert wird das LL durch:
der entscheidende Teil in neu.xml
HTML
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/button2"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</LinearLayout>
</ScrollView>
Alles anzeigen
Einfache statische Buttons lassen sich scrollen, doch wie bekomme ich eben dynamische Textfelder hinein...