我的问题是,我想编写像Excel表格这样的东西。因此,用户可以获得无限的EditText字段,他可以在信息中写入。
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:baselineAligned="false">
<EditText
android:layout_width="125dp"
android:layout_height="25dp"
android:id="@+id/editText"
android:gravity="center"
android:text="Vorgänge"
android:layout_marginTop="45dp"
android:layout_marginStart="10dp"
android:layout_marginEnd="10dp"
android:textColor="#000000"
android:singleLine="true"
android:shadowColor="#00a9a6cc"
android:clickable="true"
android:autoText="false"
android:background="@drawable/edittextstyle"/>
<EditText
android:layout_width="125dp"
android:layout_height="25dp"
android:id="@+id/editText2"
android:text="Status"
android:layout_marginTop="45dp"
android:layout_marginStart="35dp"
android:layout_marginEnd="10dp"
android:gravity="center"
android:textColor="#000000"
android:shadowColor="#00a9a6cc"
android:clickable="true"
android:background="@drawable/edittextstyle"/>
<EditText
android:layout_width="125dp"
android:layout_height="25dp"
android:id="@+id/editText5"
android:text="Priorität"
android:layout_marginTop="45dp"
android:layout_marginStart="35dp"
android:layout_marginEnd="10dp"
android:gravity="center"
android:textColor="#000000"
android:shadowColor="#00a9a6cc"
android:clickable="true"
android:background="@drawable/edittextstyle"/>
<EditText
android:layout_width="125dp"
android:layout_height="25dp"
android:id="@+id/editText3"
android:text="Abgabedatum"
android:layout_marginTop="45dp"
android:layout_marginStart="35dp"
android:layout_marginEnd="10dp"
android:gravity="center"
android:textColor="#000000"
android:shadowColor="#00a9a6cc"
android:clickable="true"
android:background="@drawable/edittextstyle"/>
</LinearLayout>
这就是我现在所拥有的。现在在下面写的文本字段中应该有无穷无尽的editText字段。
Thx for your help guys
最大:)