Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
498 views
in Technique[技术] by (71.8m points)

android - How to create an adaptor to a Wearable Recycler View?

I want to create an adapter for a WearableRecyclerView for my wearable app, I read that it is necessary otherwise you can't create a curved circular menu. All the things I see are for the RecyclerView on mobile phones, my question is how do you do the same but for the Wearable RecylcerView?

The reason I ask this is because I am trying to create a menu that looks like this: enter image description here

public class WRecyclerViewAdapter extends WearableRecyclerView.Adapter<MainMenuAdapter.RecyclerViewHolder> {
@NonNull
@Override
public MainMenuAdapter.RecyclerViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
    return null;
}

@Override
public void onBindViewHolder(@NonNull MainMenuAdapter.RecyclerViewHolder holder, int position) {

}

@Override
public int getItemCount() {
    return 0;
}

}

this is the class that is suppose to be the adapter and I have no idea what to write


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...