Reputation: 22173
What is the right design pattern for settings on android wear from user interface point of view? I mean: on a phone there is a preference activity/fragment and so on and on wear? I didn't find anything in android wear docs with the exception of watchfaces.
Upvotes: 4
Views: 1462
Reputation: 103
I found WearPreferenceActivity by Denley Bihari to suffice for small amount of Preferences on the device side.
Upvotes: 3
Reputation: 42188
You should follow the advice for watch faces. For simple settings, you can have a custom activity that will run directly on the wearable. For more complex settings, you should create a settings activity on the phone side, that will sync the settings using Data API.
Upvotes: 2