如何使按钮看起来像列表

时间:2011-07-18 16:43:10

标签: android android-layout

在我的应用中,我的按钮看起来像这样:enter image description here

我想让它们看起来像这样: enter image description here

我的background.xml如下:

<?xml version="1.0" encoding="utf-8"?>
<layer-list
    xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:drawable="@drawable/solid" />        
    <item android:drawable="@drawable/shape" />
</layer-list>

solid.xml如下:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="#ababab" />   
</shape>  

shape.xml如下:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="#ffffff" /> 
    <stroke android:width="3dp" color="#ff000000" /> 
    <corners android:radius="15dp" /> 
    <padding 
        android:left="10dp" 
        android:top="10dp" 
        android:right="10dp" 
        android:bottom="10dp" /> 
</shape>

如何获得所需的按钮外观?

3 个答案:

答案 0 :(得分:5)

顶部形状:

<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <corners
        android:topLeftRadius="5dp"
        android:topRightRadius="5dp" />
    <padding
        android:left="3dp"
        android:top="3dp"
        android:right="3dp"
        android:bottom="3dp" />
    <solid
        android:color="#ffffffff" />
    <stroke
        android:width="2dp"
        android:color="#ff000000" />
</shape>

中间形状:

<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <padding
        android:left="3dp"
        android:top="3dp"
        android:right="3dp"
        android:bottom="3dp" />
    <solid
        android:color="#ffffffff" />
    <stroke
        android:width="2dp"
        android:color="#ff000000" />
</shape>

底部形状:

<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <corners
        android:bottomLeftRadius="5dp"
        android:bottomRightRadius="5dp" />
    <padding
        android:left="3dp"
        android:top="3dp"
        android:right="3dp"
        android:bottom="3dp" />
    <solid
        android:color="#ffffffff" />
    <stroke
        android:width="2dp"
        android:color="#ff000000" />
</shape>

示例:

<Button
    android:background="@drawable/top"
    android:layout_width="150dp"
    android:layout_height="wrap_content"
    android:text="Top" />
<Button
    android:background="@drawable/middle"
    android:layout_width="150dp"
    android:layout_height="wrap_content"
    android:layout_marginTop="-2dp"
    android:text="Middle" />
<Button
    android:background="@drawable/bottom"
    android:layout_width="150dp"
    android:layout_height="wrap_content"
    android:layout_marginTop="-2dp"
    android:text="Bottom" />

查看android:layout_marginTop="-2dp" - 您需要将顶部按钮的边框与底部按钮的边框重叠

结果(图形不太好,sry): enter image description here

经过一些调整,你会得到一个你期望的形状。

我的调整:enter image description here

答案 1 :(得分:0)

您可以使用位图或图像来完成。你需要三张图片。一个用于顶部按钮,一个用于中间按钮,一个用于底部按钮。然后只需将按钮设置为适当的背景图像。

答案 2 :(得分:0)

我采用不同的方法来做到这一点。

通常我创建一个圆角背景,它将对应于整个按钮组的背景。 (通常我有一个线性布局包装它们。)然后,每个按钮之间都有一个分隔符。

这应该以一种简单的方式做你想做的事。