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
-
War Pinball HD v1.1 (Paid Version) Android Apk Game DownloadWar Pinball HD v1.1 Requirements: Android 2.3.3 and up Overview: The amazing new War Pinball HD…
-
War Pinball HD v1.1 (Paid Version) Android Apk Game DownloadWar Pinball HD v1.1 Requirements: Android 2.3.3 and up Overview: The amazing new War Pinball HD…
-
Asphalt 7: Heat HD v1.0.1 [Gameloft store] (Paid Version) Android Apk Game DownloadAsphalt 7: Heat HD v1.0.1 [Gameloft store] Requirements: Android 2.2 and up Overview: Hit the s…
-
Z Origins - (Z The Game) apk & sd dataMOBILE AND TABLET REVIEWS *Edge Magazine: 8/10 of all the RTS games before and since, there's n…
-
Backstab HD 480x800When revenge is coming, watch your back! “My name is Henry Blake, once a proud officer in England’s…
-
[Productivity] Popup Notifier Plus 3.5 (Android)Popup Notifier Plus 3.5 (Android) Requirements: Android 2.1+ Android Apk Free Popup Notifier Plus…
-
Sonic 4 Episode II apk and sd data: Armv6 qvga hvga wvga games free downloadThe Sonic 4 Saga continues in Episode II with the return of a beloved side kick and fan-favorit…

Post a Comment
Post a Comment