学校で Java プログラミングを始めたばかりで、最初の課題は、プログラムで要素を作成するのではなく、xml レイアウトを使用して作業していたアプリを再作成することです。表示したい2つの別々の線形レイアウトがあります。1つは水平で、もう1つは垂直です。水平レイアウトはすべて正常に表示されますが、垂直レイアウトを追加しようとすると、追加されますが表示されません。エミュレーターでは、水平方向の LL が押し出されているため、追加されていることがわかります。
コードの例を次に示します。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/randomButton"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight=".5"
android:text="DERP" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="HIIIII" />
<Button
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Badoop" />
</LinearLayout>
</LinearLayout>
助言がありますか?ありがとう、
デビッド