其他分享
首页 > 其他分享> > Android中的布局4按钮

Android中的布局4按钮

作者:互联网

我对Android开发很新.我正在开发一个应用程序,我需要在屏幕上布局4个按钮.按钮1 2应位于第一行,3 4应位于第二行.我希望每个按钮的高度和宽度相同.由于有多种屏幕尺寸,我希望按钮宽度为屏幕宽度的40%.
这样的事情可以通过布局来实现,还是我需要在代码中计算所有内容?

注意:我想将应用程序部署到运行Android 2.2或更高版本的设备.

这是一个示例图形.

编辑:对于所有正在寻找方块的人..这是解决方案:http://android-layouts.com/category/tags/square

解决方法:

试试这个

<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_width设置为0 .becuase没有它android:layout_weight =“40/100”=“0.4”不工作.
更多细节aboute“android:layout_weight` go
What does android:layout_weight mean?

更新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>

标签:android,layout,android-2-2-froyo
来源: https://codeday.me/bug/20190825/1721561.html