答案 0 :(得分:1)
您可以使用此视图:ActionPage。您可以设置下面的文本,里面的图标,点击时要执行的操作等。查看文档了解更多信息。 这是一个例子:
<android.support.wearable.view.ActionPage
android:id="@+id/action_page"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:maxLines="1"
android:textColor="@color/st_grey" />
我在GridViewPager中使用它:它是一个片段。
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_action, container, false);
ActionPage actionPage = (ActionPage) view.findViewById(R.id.action_page);
actionPage.setText(actionText);
actionPage.setImageResource(iconResId);
actionPage.setOnClickListener(onClickListener);
return view;
}