3

私はAndroid開発にかなり慣れていません。私は現在、画面に4つのボタンをレイアウトする必要があるアプリに取り組んでいます。ボタン 1 + 2 は 1 行目に、3 + 4 は 2 行目に配置する必要があります。各ボタンの高さと幅を同じにしたい。また、複数の画面サイズがあるため、ボタンの幅を画面幅の 40% にする必要があります。このようなものは、レイアウトするだけで作成できますか、それともすべてをコードで計算する必要がありますか?

注: Android 2.2 以降を実行しているデバイスにアプリをデプロイしたいと考えています。

これがサンプルグラフィックです。 ここに画像の説明を入力

編集:正方形のものを探しているすべての人のために..ここに解決策があります:http://android-layouts.com/category/tags/square

4

3 に答える 3

3

これを試して

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >


    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

    <Button
        android:id="@+id/button1"
        android:layout_width="0px"
        android:layout_height="wrap_content"
        android:layout_weight="0.4"
        android:text="Button" />

    <Button
        android:id="@+id/button2"
        android:layout_width="0px"
        android:layout_height="wrap_content"
        android:layout_weight="0.6"
        android:text="Button" />

    </LinearLayout>


    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

    <Button
        android:id="@+id/button3"
        android:layout_width="0px"
        android:layout_height="wrap_content"
        android:layout_weight="0.4"
        android:text="Button" />

    <Button
        android:id="@+id/button4"
        android:layout_width="0px"
        android:layout_height="wrap_content"
        android:layout_weight="0.6"
        android:text="Button" />

    </LinearLayout>



</LinearLayout>

ここに画像の説明を入力

したがって、この問題を解決するには、使用する必要がありandroid:layout_weight="40/100"="0.4"
、その前にandroid:layout_width0 に設定する必要がありますandroid:layout_weight="40/100"="0.4"
android:layout_weight の詳細については、android:layout_weight
とはどういう意味ですか?

UPDATE 1

ボタンの高さのためにこのタスクを実行するには、以下のコードを試してください

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >


    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="0px"
        android:layout_weight="0.6"
        android:orientation="horizontal" >

    <Button
        android:id="@+id/button1"
        android:layout_width="0px"
        android:layout_height="fill_parent"
        android:layout_weight="0.4"
        android:text="Button" />

    <Button
        android:id="@+id/button2"
        android:layout_width="0px"
        android:layout_height="fill_parent"
        android:layout_weight="0.6"
        android:text="Button" />

    </LinearLayout>


    <LinearLayout 
        android:layout_width="fill_parent"
        android:layout_height="0px"
        android:layout_weight="0.4"
        android:orientation="horizontal" >

    <Button
        android:id="@+id/button3"
        android:layout_width="0px"
        android:layout_height="fill_parent"
        android:layout_weight="0.4"
        android:text="Button" />

    <Button
        android:id="@+id/button4"
        android:layout_width="0px"
        android:layout_height="fill_parent"
        android:layout_weight="0.6"
        android:text="Button" />

    </LinearLayout>



</LinearLayout>
于 2013-06-02T15:36:31.210 に答える