没有通知的动作按钮 - 磨损

时间:2016-05-12 07:37:58

标签: android wear-os

我想知道是否有可能在我的应用程序内部在android上创建这种按钮(没有链接上的通知)。

Ansible

enter image description here

1 个答案:

答案 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;
}