0

学校で 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>

助言がありますか?ありがとう、

デビッド

4

1 に答える 1

0

I copied your code into eclipse layout view.

  • You left off the closing LinearLayout element. Probably just missed it in copy paste, but if not, add it.
  • The "0dip" width gave me errors. When I switched to "wrap_content" it worked fine.
  • The Textview isn't showing because the blackground and text are both black.

Here's the textview and button:

   <TextView
    android:layout_width="wrap_content"
    android:textColor="@color/white"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:text="HIIIII" />

    <Button
    android:layout_width="wrap_content"
    android:textColor="@color/black"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:text="Badoop" />
于 2013-08-01T00:40:06.690 に答える