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.
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> -- Delivered by Feed43 service
Related Posts
There is no other posts in this category.Popular
-
Button Savior Pro (Root) v1.6.2b (Paid Version) Android Apk App DownloadButton Savior Pro (Root) v1.6.2b Requirements: Android 1.6 + / Rooted device Overview: If you a…
-
Max Payne Mobile(Apk+Data)Max Payne Mobile finally released for android. May Payne, the award-winning title is now available …
-
-
[Tools] System Tuner Pro 1.5.4 (Android) ApkSystem Tuner Pro 1.5.4 (Android) Requirements: Android 1.5+ Android Apk Free System Tuner Pro 1.…
-
Babel Rising 3D v1.7.1 APKPlay God Almighty in Babel Rising 3D to prevent the Babylonians from building the famous Babel …
-
Song Pop v1.2.44Are you ready to rock? Listen to song clips to test your music recognition - then send challenges t…
-
Pro Zombie SoccerAPK OBB How to install? 1. Extract obb to android/obb 2. install APK

Post a Comment
Post a Comment