Android中的分组水平按钮组

时间:2012-01-04 12:37:07

标签: android android-layout

您好我想知道是否有任何方法可以在Android中实现这种外观: http://jquerymobile.com/demos/1.0/docs/buttons/buttons-grouped.html

特别是我正在寻找具有圆形边缘的外部按钮,而内部按钮是完美的矩形。

2 个答案:

答案 0 :(得分:4)

你可以为每个人制作Shape文件。只需创建Shape文件,并定义特定按钮的角半径并使用它。

例如顶部按钮1

像这样设置按钮背景

<Button android:id="@+id/btn1" android:text="Click" android:layout_width="wrap_content"
      android:layout_height="wrap_content" android:background="@drawable/mycorner"/>

在可绘制文件夹中为不同形状创建不同的xml文件,例如mycorner.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
    <corners    android:bottomLeftRadius="8dip"
                android:topRightRadius="8dip"
                android:topLeftRadius="1dip"
                android:bottomRightRadius="1dip"
                />
    <padding android:left="5dp" android:right="5dp" android:top="5dp" android:bottom="5dp" />
    <gradient android:startColor="#ffffff" android:endColor="#ffffff" />
</shape>

答案 1 :(得分:1)

制作三个按钮,设置如下:

android:layout_width="0dip"

android:layout_height="match_parent"

android:layout_weight="1"

这将均匀地分隔每个按钮。至于圆角,这里已经有很多例子,只是搜索。 https://stackoverflow.com/search?q=%5Bandroid%5D+round+button+corners