Android Button Highlight

In android, we can highlight the button through custom images. Here is a example that will give you about how to set a image when the button is focused, pressed and focused pressed. we can set each image for each stage.
Example for Android Button Highlight :-

01<?xml version="1.0" encoding="utf-8"?>
02<LinearLayout android:id="@+id/LinearLayout01"
03android:layout_width="fill_parent"
04android:layout_height="fill_parent"
06// Adding Button to Layout
07<Button android:id="@+id/Button01"
08android:background="@drawable/buttonhighlight"
09android:layout_height="60px"
10android:layout_width="100px"></Button>
11</LinearLayout>

Here “@drawable/buttonhighlight” is a XML file located in res/drawable folder. (see below image blue color highlighted)
buttonhighlight1
Create a XML file in res/drawable folder (ex:- buttonhighlight.xml) and write the code as

01<?xml version="1.0" encoding="utf-8"?>
02<selectorxmlns:android="http://schemas.android.com/apk/res/android">
03// Button Focused
04    <item android:state_focused="true"
05    android:state_pressed="false"
06    android:drawable="@drawable/buttonhighlightfocused" />
07// Button Focused Pressed
08    <item android:state_focused="true"
09    android:state_pressed="true"
10    android:drawable="@drawable/buttonhighlightpressed" />
11// Button Pressed
12    <item android:state_focused="false"
13    android:state_pressed="true"
14    android:drawable="@drawable/buttonhighlightpressed" />
15// Button Default Image
16    <item android:drawable="@drawable/buttonhighlightdefault"/>
17</selector>

The outputwill looks like
buttonhighlightdefault1buttonhighlightfocused1buttonhighlightpressed1

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值