如何在 android 中以编程方式显示长按主屏幕时打开的菜单?



我想从我的应用程序中显示该菜单。可能吗?

此菜单

我可以用代码向主屏幕显示。

Intent intent = new Intent();
intent.setAction(Intent.ACTION_MAIN);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addCategory(Intent.CATEGORY_HOME);
startActivity(intent);

为父布局提供 ID 喜欢

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/ll_stack"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".STACK">
</LinearLayout>

现在将此布局设置为活动中的小部件 通过 findviewbyid 检查这里

LinearLayout ll = findViewById(R.id.ll_stack);
ll.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
Intent intent = new Intent();
intent.setAction(Intent.ACTION_MAIN);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addCategory(Intent.CATEGORY_HOME);
startActivity(intent);
return false;
}
});

只需在每次屏幕长按时检查此内容即可

最新更新