Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试在 Android 手机上安装我的 android 应用程序。而且我知道,当 APK 安装在设备中时,它会自动创建该应用程序的文件夹。但是我的应用程序没有创建文件夹,有人知道我如何解决这个问题吗?
如果您通过文件夹表示启动应用程序的启动器图标...
有没有加
<intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter>
到清单文件中的一项活动?