MTK 放大桌面图标大小

通过alps/packages/apps/Launcher3/src/com/android/launcher3/InvariantDeviceProfile.java中的

public GridOption(Context context, AttributeSet attrs);方法得知launcher3加载了device_profiles.xml来设置桌面布局,可以设备桌面icons的行列排布,和修改大小

修改alps/packages/apps/Launcher3/res/xml/device_profiles.xml这个文件里的 launcher:iconImageSize="72"的值就可以。

要将指定的应用程序显示在 MTK Android 系统的桌面上,你需要执行以下步骤: 1. 在 AndroidManifest.xml 文件中声明应用程序的主 Activity。确保在 intent-filter 中设置了 CATEGORY_LAUNCHER,这样应用程序的图标才会显示在桌面上。 2. 在应用程序的主 Activity 中,使用以下 Intent 启动应用程序: ``` Intent launchIntent = new Intent(Intent.ACTION_MAIN); launchIntent.addCategory(Intent.CATEGORY_LAUNCHER); launchIntent.setComponent(new ComponentName(this, MainActivity.class)); startActivity(launchIntent); ``` 在上面的代码中,MainActivity.class 要替换成你应用程序的主 Activity。 3. 如果你想在系统启动时自动启动应用程序,你可以创建一个 BroadcastReceiver,监听 ACTION_BOOT_COMPLETED 广播,并在该广播中启动应用程序。 ``` public class BootReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { if (intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED)) { Intent launchIntent = new Intent(context, MainActivity.class); launchIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(launchIntent); } } } ``` 在上面的代码中,MainActivity.class 要替换成你应用程序的主 Activity。 然后在 AndroidManifest.xml 文件中声明该 BroadcastReceiver: ``` <receiver android:name=".BootReceiver" android:enabled="true" android:exported="true"> <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED" /> </intent-filter> </receiver> ``` 确保在 AndroidManifest.xml 文件中声明了 RECEIVE_BOOT_COMPLETED 权限: ``` <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> ``` 这样,你的应用程序就会显示在 MTK Android 系统的桌面上了。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值