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

时间:2016-05-31 06:52:16

标签: android directory android-appwidget android-livefolders

在Android中,我希望以编程方式在主屏幕上创建文件夹,例如清洁主人为游戏助推器或MyJio应用程序将其所有应用程序放在一个文件夹中。我尝试使用Live文件夹,但它已被弃用,并且在最新的Android版本中也不适用于我。 它是一个小部件还是我无法理解的,请帮助我理解这一点。提前致谢

2 个答案:

答案 0 :(得分:1)

您可以使用对话框创建,使用多个应用图片创建应用图标并将其设置为您的应用图标,现在创建一个活动并在清单中注册 ,我只显示两个按钮,你可以在对话框布局中添加更多

    <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>

现在您的活动如下

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>

答案 1 :(得分:0)

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