0

在此处输入图像描述

屏幕底部的两个按钮是 Scan 和 Leads,如果我们点击任何按钮,按钮的视图是可见的,就像您在图像中看到的铅按钮一样按下,此视图将根据按钮单击而改变,并且在这里,我无法为按钮创建那种外观和感觉。请向我提供示例代码或建议我实现这种外观。

感谢您

4

2 回答 2

0
<?xml version="1.0" encoding="utf-8"?>

<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/button_some_name_pressed" android:state_pressed="true"/>
    <item android:drawable="@drawable/button_some_name_default"/>

</selector>

把它放在你的/drawable/文件夹中button_some_name.xml

然后在你的etc中有button_some_name_pressed.png&button_some_name_pressed.pngdrawable-ldpi drawable-mdpi

还有其他州需要考虑

参考:http: //developer.android.com/guide/topics/resources/drawable-resource.html#StateList

于 2012-04-04T11:29:55.970 回答
0

这是自定义按钮。自定义按钮非常容易创建,您只需为按钮的不同状态制作不同的图像并将其放入 res/drawable 文件夹中。下面的链接包含创建这个的分步描述:

http://androidemulator.wordpress.com/2011/11/03/creating-custom-buttons-in-android-applications/

于 2012-04-04T11:48:28.893 回答