在android 2.3.3中创建这样的按钮

时间:2012-11-23 00:29:03

标签: android button styles

如何在android 2.3.3(Eclipse)中创建这样的按钮:

button

3 个答案:

答案 0 :(得分:1)

您可以使用HoloEverywhere。这是一个开源的

https://github.com/ChristopheVersieux/HoloEverywhere

答案 1 :(得分:1)

您可以使用ImageView实现此功能,您可以使用全息效果创建图像,并将其作为android:src="@drawable/holo_img"放在图像视图中

答案 2 :(得分:0)

尝试创建自定义按钮,您可以通过在xml文件中编码来创建任何形状 这是我创建带圆角按钮的代码

<?xml version="1.0" encoding="UTF-8"?>
    <shape      xmlns:android="http://schemas.android.com/apk/res/android"
                android:shape="rectangle">

        <solid   android:color="#FFFDD0"/>

        <corners    android:bottomLeftRadius="8dip"
                    android:topRightRadius="8dip"
                    android:topLeftRadius="8dip"
                    android:bottomRightRadius="8dip"
                    />
        <stroke android:width="1px" android:color="#000000" />

    </shape> 

根据您的要求更改此代码。