4行に2つのテキストビューが並んでいる次のコードがあります。
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dp"
android:layout_weight="1.1"
android:gravity="center"
android:weightSum="4" >
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center" >
<TextView
android:id="@+id/tvCodeNameDetail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="cnsdsdsf:"
android:layout_weight="1"
android:gravity="center"
android:background="#ff0000" />
<TextView
android:id="@+id/tvCodeName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"
android:layout_weight="1"
android:gravity="center"
android:background="#00FF00" />
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center" >
<TextView
android:id="@+id/tvVersionDetail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="vnddf: "
android:layout_weight="1"
android:gravity="center"
android:background="#00ff00" />
<TextView
android:id="@+id/tvVersion"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"
android:layout_weight="1"
android:gravity="center"
android:background="#ff0000" />
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center" >
<TextView
android:id="@+id/tvReleaseDetail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="rdsdfsdfsfsdf: "
android:layout_weight="1"
android:gravity="center"
android:background="#FF0000" />
<TextView
android:id="@+id/tvRelease"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"
android:layout_weight="1"
android:gravity="center"
android:background="#00FF00" />
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center" >
<TextView
android:id="@+id/tvAPIDetail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="apdd: "
android:layout_weight="1"
android:gravity="center"
android:background="#00ff00" />
<TextView
android:id="@+id/tvAPI"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"
android:layout_weight="1"
android:gravity="center"
android:background="#ff0000" />
</LinearLayout>
</LinearLayout>
以下が表示されます。
コードを変更して、テキストビュー内のテキストを常に 50%/50% にしないようにするにはどうすればよいですか?