Skip to main content

Posts

Showing posts with the label Custom PreferenceScreen

Android: Custom PreferenceScreen

1) preferences_holder.xml <? xml version = "1.0" encoding = "utf-8" ?> <LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android" android:layout_width = "fill_parent"   android:layout_height = "fill_parent" android:orientation = "vertical" > <LinearLayout   android:orientation = "horizontal"   android:background = "@color/bto_dark_green"   android:layout_width = "fill_parent" android:gravity = "center_vertical"   android:layout_height = "wrap_content" android:paddingTop = "4dip" >  <Button   android:id = "@+id/backPrefBurron"     android:layout_width = "wrap_content" android:layout_height = "wrap_content"     android:text = "Home" /> <TextView     android:id = ...