私は自分のアプリケーション用のバドミントンフィールドレイアウトを作成しようとしています。
いくつかの実験の後、私はそのような見栄えの良いものを手に入れました(field.xmlは以下を参照)。
バドミントンのフィールドレイアウトを作成するのにおそらく最善の方法ではないことは知っていますが、それ以来、より良い解決策は見つかりませんでした。誰かがフィールドを構築する方法についてより良いアイデアを持っているなら、私はコメントをいただければ幸いです。
主な問題は、いくつかのテキストフィールドにテキストを追加したいという事実です。フィールドにテキストを追加するとすぐに、レイアウトが壊れます:broken layout.png
これらのテキスト要素からlayout_width属性:wrap_contentを削除すると、UIエディターはそれを正しく表示します:wantedlayout.png。
ただし、layout_width属性が欠落しているため、アプリケーションはこのレイアウトをデバイスにロードしません。
レイアウトを損なうことなくフィールドにテキストを追加する方法はありますか?
field.xml:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/row1"
style="@style/topborder"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.1"
android:orientation="horizontal" >
<TextView
android:id="@+id/field11"
style="@style/leftrightborder"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="0.3"
android:background="#000000"
android:gravity="center_horizontal" />
<TextView
android:id="@+id/field12"
style="@style/rightborder"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="#000000"
android:gravity="center"
android:text="Team 1" />
<TextView
android:id="@+id/field13"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="#000000"
android:gravity="center_horizontal"
android:text="" />
<TextView
android:id="@+id/field14"
style="@style/leftrightborder"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="0.3"
android:background="#000000"
android:gravity="center_horizontal"
android:text="" />
</LinearLayout>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/row2"
style="@style/bottomborder"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.7"
android:orientation="horizontal" >
<TextView
android:id="@+id/field21"
style="@style/leftrightborder"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="0.3"
android:background="#000000"
android:gravity="center_horizontal"
android:text="" />
<TextView
android:id="@+id/field22"
style="@style/rightborder"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="#000000"
android:gravity="center"
android:text="21"
android:textSize="50dp" />
<TextView
android:id="@+id/field23"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="#000000"
android:gravity="center_horizontal"
android:text="" />
<TextView
android:id="@+id/field24"
style="@style/leftrightborder"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="0.3"
android:background="#000000"
android:gravity="center_horizontal"
android:text="" />
</LinearLayout>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/row3"
style="@style/bottomborder"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.3"
android:orientation="horizontal" >
<TextView
android:id="@+id/field31"
style="@style/leftrightborder"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="0.3"
android:background="#000000"
android:gravity="center_horizontal"
android:text="" />
<TextView
android:id="@+id/field32"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="2"
android:background="#000000"
android:gravity="center_horizontal"
android:text="" />
<TextView
android:id="@+id/field33"
style="@style/leftrightborder"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="0.3"
android:background="#000000"
android:gravity="center_horizontal"
android:text="" />
</LinearLayout>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/row4"
style="@style/bottomborder"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.3"
android:orientation="horizontal" >
<TextView
android:id="@+id/field41"
style="@style/leftrightborder"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="0.3"
android:background="#000000"
android:gravity="center_horizontal"
android:text="" />
<TextView
android:id="@+id/field42"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="2"
android:background="#000000"
android:gravity="center_horizontal"
android:text="" />
<TextView
android:id="@+id/field43"
style="@style/leftrightborder"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="0.3"
android:background="#000000"
android:gravity="center_horizontal"
android:text="" />
</LinearLayout>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:id="@+id/row5"
android:layout_height="wrap_content"
android:layout_weight="0.7"
android:orientation="horizontal" >
<TextView
android:id="@+id/field51"
style="@style/leftrightborder"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="0.3"
android:background="#000000"
android:gravity="center_horizontal"
android:text="" />
<TextView
android:id="@+id/field52"
style="@style/rightborder"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="#000000"
android:gravity="center_horizontal"
android:text="" />
<TextView
android:id="@+id/field53"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="#000000"
android:gravity="center"
android:text="10"
android:textSize="50dp" />
<TextView
android:id="@+id/field54"
style="@style/leftrightborder"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="0.3"
android:background="#000000"
android:gravity="center_horizontal"
android:text="" />
</LinearLayout>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/bottomborder"
android:id="@+id/row6"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.1"
android:orientation="horizontal" >
<TextView
android:id="@+id/field61"
style="@style/leftrightborder"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="0.3"
android:background="#000000"
android:gravity="center_horizontal"
android:text="" />
<TextView
android:id="@+id/field62"
style="@style/rightborder"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="#000000"
android:gravity="center_horizontal"
android:text="" />
<TextView
android:id="@+id/field63"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="#000000"
android:gravity="center"
android:text="Team 2" />
<TextView
android:id="@+id/field64"
style="@style/leftrightborder"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="0.3"
android:background="#000000"
android:gravity="center_horizontal"
android:text="" />
</LinearLayout>