0

アプリのレイアウトで必要な場所にボタンを配置できないという問題があります...これに関する情報を検索しましたが、誰もが何か違うことを言っていて、私はただ混乱しています...誰か私が持っているものを教えてもらえますかする?下の画像を参照してください。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/relativeLayout1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/uc" >

    <Button
        android:id="@+id/button1"
        android:layout_width="200dp"
        android:layout_height="200dp"
        android:layout_alignLeft="@+id/button2"
        android:layout_alignParentTop="true"
        android:text="Button" />

    <Button
        android:id="@+id/button2"
        android:layout_width="200dp"
        android:layout_height="wrap_content"
        android:layout_below="@+id/button1"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="98dp"
        android:text="Button" />

ここに画像の説明を入力

4

3 に答える 3

1

こんにちは、以下のコードを使用できます

    <Button
        android:id="@+id/button1"
        android:layout_width="200dp"
        android:layout_height="200dp"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:text="Button" />

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_below="@+id/button1"
        android:gravity="center" >

        <Button
            android:id="@+id/button2"
            android:layout_width="200dp"
            android:layout_height="wrap_content"
            android:text="Button" />
    </LinearLayout>

</RelativeLayout>
于 2012-12-25T16:01:02.253 に答える
1

ボタンのマージンをハードコードしたのは "98dp" android:layout_marginTop="98dp"です。そして、その暗い黒い長方形はあなたの画像の背景にあります. したがって、画面サイズが異なるため、ボタン/テキスト/画像を背景の同じ部分に正確に表示することは常に不可能です。fill_parentを定義すると背景が大きな画面に合わせて伸びるため、余白は同じままです。ImageButtonを使用して、その背景を黒に設定できます。そして、そのダークブラックの長方形を背景から削除します.

于 2012-12-25T16:18:35.557 に答える
1

従うべき手順:

「ボタンをどこに置きたいですか? 」と自問してください。答えが下のどこかbutton1にある場合、それはすでに..

距離を増やしたい場合は、より大きな値を試してくださいandroid:layout_marginTop="98dp"

button2一番下に試してみたい場合は、android:layout_marginBottom代わりにandroid:layout_marginTop

于 2012-12-25T16:07:26.757 に答える