Home
› Uncategorized
android.graphics.drawable.StateListDrawable lets you assign a number of graphic images to a single Drawable and swap out the visible item by a string ID value.
It can be defined in an XML file with the <selector> element. Each state Drawable is defined in a nested <item> element. For more information, see the guide to Drawable Resources.
it's a simple exercise create custom Button using StateListDrawable.
Prepare your custom button images of default, focused and pressed in /res/drawable/ folder.
Create /res/drawable/mybutton.xml to define each state Drawable.
Assign the custom button in layout using android:background="@drawable/mybutton".
Download the files.
Related:
- Create custom background for Views
It can be defined in an XML file with the <selector> element. Each state Drawable is defined in a nested <item> element. For more information, see the guide to Drawable Resources.
it's a simple exercise create custom Button using StateListDrawable.
Prepare your custom button images of default, focused and pressed in /res/drawable/ folder.
Create /res/drawable/mybutton.xml to define each state Drawable.
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="true" android:drawable="@drawable/button_pressed" /> <item android:state_focused="true" android:drawable="@drawable/button_focused" /> <item android:drawable="@drawable/button" /> </selector> Assign the custom button in layout using android:background="@drawable/mybutton".
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" > <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:background="@drawable/mybutton" /> </RelativeLayout> Related:
- Create custom background for Views
-- Delivered by Feed43 service
Related Posts
There is no other posts in this category.Popular
-
At the moment SPB Shell is the best 3D Launcher out in the market. They are working really hard to …
-
Textgram Pro v2.0.3Textgram Pro v2.0.3 APK Google play Store Go To Adf.ly Create beautiful…
-
Easy Downloader Pro v1.0.5 ApkEasy Downloader Pro v1.0.5 Apk Requirements: Android v2.1+ Overview: Easy Downloader Pro is a profe…
-
iBlast Moki 2 v1.1.1iBlast Moki 2 v1.1.1 APK Google play Store Go To Adf.ly SHARE YOUR CREATIONS Bu…
-
Babel Rising 3D v1.7.1 APKBabel Rising 3D v1.7.1 APK Google play Store Go To Adf.ly Your divine intervent…
-
Baseball Superstars® 2012 v1.0.7 ModStep up to the plate for the best baseball experience on Android Market, now looking better than ev…
-
Slot Life - Pirates v1.013 (Paid Version) Android Apk Game DownloadHatchi v1.03 Requirements: Android 2.1 and up Overview: Hatchi is a retro virtual pet. He needs…

Post a Comment
Post a Comment