如何在android中创建这个文本标题形状

时间:2013-06-23 15:03:54

标签: android shape

我在photoshop设计我的应用程序,我创建了我的大部分设计,但我不能创建这个形状: shape for header

但我只能创建代码低于

的矩形
<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <size android:width="80dp" android:height="30dp" />
    <solid 
        android:color="@color/blue"/>

</shape>
谁能帮帮我? 谢谢你的回复

1 个答案:

答案 0 :(得分:2)

你绝对需要它成为一个Android形状?或者你可以简单地使用png吗?

请查看如何制作自定义按钮:http://developer.android.com/guide/topics/ui/controls/button.html

或者为了获得最大的灵活性,请添加一个imageview: http://developer.android.com/reference/android/widget/ImageView.html

然后为它设置一个ontouch监听器: How to implement touch listener on image?

希望这有帮助。