WearPreferenceActivity


Source link: https://github.com/denley/WearPreferenceActivity

WearPreferenceActivity

A preferences framework for Android Wear apps. Equivalent to Android's PreferenceActivity, but for Android Wear.

Build Configuration

Add the following line to the gradle dependencies for your wearable app's module.

compile 'me.denley.wearpreferenceactivity:wearpreferenceactivity:0.5.0'

Basic Use

WearPreferenceActivity works much the same way as Android's PreferenceActivity framework.

Start by creating a preferences xml file (in the /res/xml/ folder). You may choose to reuse the same file from your mobile app. An example of such a file is below.

<PreferenceScreen
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  >

<SwitchPreference

android:key="use_location"

android:title="@string/title_location"

android:summaryOn="@string/location_summary_on"

android:summaryOff="@string/location_summary_off"

app:wear_iconOn="@drawable/ic_location_on_white_24dp"

app:wear_iconOff="@drawable/ic_location_off_white_24dp"

android:defaultValue="true"

/>

<ListPreference

android:key="language"

android:title="@string/title_language"

android:icon="@drawable/ic_language_white_24dp"

android:entries="@array/entries_language"

android:entryValues="@array/values_language"

app:wear_entryIcons="@array/icons_language"

android:defaultValue="en"

/>  </PreferenceScreen>

Next, create an Activity that extends WearPreferenceActivity, and add the preferences from the xml resource using the addPreferencesFromResource method. Don't forget to define the Activity in your AndroidManifest.xml file.

public class MySettingsActivity extends WearPreferenceActivity {

@Override protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

 addPreferencesFromResource(R.xml.preferences);

  
}
  
}

That's it! The preferences page is created. It will load and save the corresponding preference values, and it will automatically listen for external changes to preference values and update the view accordingly.

Preference Types

This library currently supports ListPreference, SwitchPreference, and CheckBoxPreference out of the box.

Other preference types can be created by extending the WearPreference class, and defining how it responds to user clicks in its onPreferenceClick() method. You may also want to override getSummary() to have it show the current value of the preference.

If you create a custom preference type, you need to let the xml parser know how to create it. This can be done in two ways:

Option 1 - Use the full class name in the xml file

<PreferenceScreen
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  >

...

<com.example.MyCustomWearPreference

android:key="a_pref_key"

android:title="@string/a_pref_title"

/>
</PreferenceScreen>

Option 2 - Create a Custom Parser

You can specify exactly how you want the preferences to be instantiated from the xml file by creating your own XmlPreferenceParser. You could also use this method to give your preference types additional aliases.

public class MyPreferenceParser extends XmlPreferenceParser {

protected WearPreference parsePreference(Context context, String preferenceType, final AttributeSet attrs) {

if(preferenceType.equals("MyCustomWearPreference") {

 return new MyCustomWearPreference(context, attrs);

}
 else {

 return null;

}

  
}
  
}

If you choose this method, you must supply the parser with the xml resource value:

addPreferencesFromResource(R.xml.preferences, new MyPreferenceParser());

If you would like to see any additional preference types included in this library, don't hesitate to submit an issue or a pull request.

License

Copyright 2015 Denley Bihari  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at
  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

A View whose pages and items both can be dragged, looking like a ViewPager.

An adapter to create Android RecyclerViews with sections, providing headers and footers.

A library to make pretty badges.

Android Orientation Sensor Library helps you to get more accurate vector values of orientation, using all available device sensors.

Mortar Architect provides a flexible stack for navigating and displaying views and their presenters.

Architect is Mortar scope-centric. A Mortar scope is the glue between a View and its ViewPresenter. Architect will create a Mortar scope for each View & ViewPresenter association. A StackScope is a class that Architect will look for when building a Mortar scope, and its role is to configure the Mortar scope.

In your applications you often need to change certain configuration settings, monitor internal state or simply try to understand what, DebugDrawer allows you to easily add a slide out drawer with the ability to do this. Classes are provided to allow you to easily create your own additions to customize to your needs.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes