在主屏幕上创建文件夹,我可以在网格中放置一些图标

Create Folder on Home Screen where i can put some icons in grid

在 Android 我想以编程方式在主屏幕上创建文件夹,就像 clean master 为游戏助推器做的或 MyJio 应用程序将其所有应用程序放在一个文件夹。我尝试使用 Live 文件夹,但它已被弃用,并且在最新的 android 版本中也不适合我。 它是一个小部件还是我对此不理解的地方,请帮助我理解这一点。提前致谢

您可以使用对话框来完成,使用多个应用程序图像创建应用程序图标并将其设置为您的应用程序图标,现在创建一个 activity 并将其注册到清单中,例如 ,我只显示了两个按钮,您可以在对话框布局中添加更多按钮

    <activity android:name=".DialogActivity"
        android:theme="@android:style/Theme.DeviceDefault.Dialog">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

现在你的 activity 如下

public class DialogActivity extends Activity {

AlertDialog dialog;
LinearLayout mLinearLayout;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.test);

    mLinearLayout = (LinearLayout) findViewById(R.id.test);
    mLinearLayout.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            finish();
        }
    });

    Window window = this.getWindow();
    window.setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));


    AlertDialog.Builder builder = new AlertDialog.Builder(this);

    builder.setPositiveButton("ok", new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int id) {
            // User clicked OK button
        }
    });
    builder.setNegativeButton("cancel", new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int id) {
            // User cancelled the dialog
            dialog.dismiss();
            finish();
        }
    });
    dialog = builder.create();
    dialog.show();

    dialog.setOnCancelListener(new DialogInterface.OnCancelListener() {
        @Override
        public void onCancel(DialogInterface dialog) {
            finish();
        }
    });
}}

test.xml

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

您是否正在寻找类似这样的东西 Assistive Touch,一个浮动按钮,可以在所有应用程序顶部使用,或者想要创建简单的文件夹 哪个只能在主屏幕上访问?