Home
› Uncategorized
This exercise demonstrate how to create custom background, which can be applied on various views such as TextView, Button, ImageButton...etc.
Create /res/drawable/mybackground.xml to define our custom background.
Use the custom background in layout file.
Download the files.
Related:
- Create custom Button using StateListDrawable
Create /res/drawable/mybackground.xml to define our custom background.
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="true" > <shape> <gradient android:startColor="#FF0000" android:endColor="#FF00FF" android:angle="180" /> <stroke android:width="3dp" android:color="@android:color/background_dark" /> <corners android:radius="3dp" /> <padding android:left="50dp" android:top="10dp" android:right="50dp" android:bottom="10dp" /> </shape> </item> <item android:state_focused="true" > <shape> <gradient android:startColor="@android:color/background_light" android:endColor="@android:color/background_dark" android:angle="180" /> <stroke android:width="3dp" android:color="@android:color/background_dark" /> <corners android:radius="3dp" /> <padding android:left="50dp" android:top="10dp" android:right="50dp" android:bottom="10dp" /> </shape> </item> <item> <shape> <gradient android:startColor="@android:color/background_light" android:endColor="@android:color/background_dark" android:angle="180" /> <stroke android:width="3dp" android:color="@android:color/background_dark" /> <corners android:radius="3dp" /> <padding android:left="50dp" android:top="10dp" android:right="50dp" android:bottom="10dp" /> </shape> </item> </selector> Use the custom background in layout file.
<LinearLayout 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" android:orientation="vertical"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello, it's a TextView" android:clickable="true" android:background="@drawable/mybackground" android:layout_margin="5dp" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello, it's a Button" android:background="@drawable/mybackground" android:layout_margin="5dp" /> <ImageButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/ic_launcher" android:background="@drawable/mybackground" android:layout_margin="5dp" /> </LinearLayout> Related:
- Create custom Button using StateListDrawable
-- Delivered by Feed43 service
Related Posts
There is no other posts in this category.Popular
-
Smart Launcher Pro v0.8.22 APKSmart Launcher Pro v0.8.22 APK Google play Store Go To Adf.ly Smart Launcher is…
-
AVG Mobilation Antivirus Pro v2.12.1 ApkAVG Mobilation Antivirus Pro v2.12.1 APK Requirements: Android 1.5 and up Overview: AVG Antivirus P…
-
[Tools] App Quarantine Pro ROOT/FREEZE 2.3.3 (Android)App Quarantine Pro ROOT/FREEZE 2.3.3 (Android) Requirements: Android 2.2+ Android Apk Free App Qu…
-
Cool Blue GO Launcher Theme v1.0.4 (Paid Version) Android Apk App DownloadCool Blue GO Launcher Theme v1.0.4 Requirements: Andorid 2.0+ Overview: Cool Blue for GO Launch…
-
Facebook Desktop v0.53.13340.53765 ApkFacebook Desktop v0.53.13340.53765 Apk Requirements: Android 2.1+ Android Apk Free Facebook Des…
-
Don't Fall OffRequirements: Overview: Help Rollie the hamster with his epic trip around the world on his paper b…
-
Textgram Pro v2.0.3Textgram Pro v2.0.3 APK Google play Store Go To Adf.ly Create beautiful…

Post a Comment
Post a Comment