0

コードを実行すると、画像が最初にリストされているかどうかに関係なく、ボタンなしで画面の左側に画像が表示されます。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/LinearLayout01"
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    android:gravity="bottom" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_weight="5"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:contentDescription="@string/none"
        android:src="@drawable/oxwichpointtest" />

    <Button
        android:id="@+id/button1"
        android:layout_weight="1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:onClick="openGuide"
        android:text="@string/button_text" />

</LinearLayout>

更新: すべての提案に感謝します。私はそれらをすべて試しましたが、アプリのレイアウトに変更がなかったため、.java ファイルで画像を設定した方法に問題があると思われます。これを変更してうまくいくことを願っています。問題が解決しない場合は、後でここにコードを追加することもできます。繰り返しますが、少なくともレイアウトに大きな問題がないことはわかっています。

4

3 に答える 3

-1

親で Android:layout_weight="1" を使用します。

そして、必要に応じて重みの一部をイメージビューとボタンに割り当てます!例:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout01"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:gravity="bottom" android:layout_weight="1">

<ImageView
    android:id="@+id/imageView1"

    android:layout_width="10dp"
    android:layout_height="wrap_content"
    android:contentDescription="@string/none"
    android:src="@drawable/oxwichpointtest" android:layout_weight="0.5"/>

<Button
    android:id="@+id/button1"

    android:layout_width="10dp"
    android:layout_height="wrap_content"
    android:onClick="openGuide"
    android:text="@string/button_text" android:layout_weight="0.5"/></LinearLayout>
于 2013-07-04T11:20:57.663 に答える