Skip to content

Instantly share code, notes, and snippets.

View zjbpku's full-sized avatar
🚩

Rookie Bird zjbpku

🚩
View GitHub Profile
@PomepuyN
PomepuyN / SettingsAdapter.java
Last active August 4, 2025 18:51
Functional example of WearableListView
public class SettingsAdapter extends WearableListView.Adapter {
private final Context context;
private final List<SettingsItems> items;
public SettingsAdapter(Context context, List<SettingsItems> items) {
this.context = context;
this.items = items;
}

##Project structure

I think it's important to have a good understanding of what happens under the hood when working with an idea, especially one that is still under heavy development and error prone. I'll show you what Studio does when creating or importing a project.

###New Simple Android Project

###Importing existing Samples

In this section, I'm going to be taking a look at 2 popular sample apps from Google