Android用のカスタムホームスクリーン交換アプリケーションを作成するにはどうすればよいですか?

StackOverflow https://stackoverflow.com/questions/3666771

  •  01-10-2019
  •  | 
  •  

質問

ホームスクリーン交換アプリケーションを作成するにはどうすればよいですか?利用可能なホームスクリーンアプリケーションに関する情報はありますか?

任意のアプリケーションは、それを登録するだけでホームスクリーンにすることができますか CATEGORY_HOME 意図?

役に立ちましたか?

解決

??????????????????????????????????????????????

???? Git?????????????Android?????????????????????????

?????????URL?????:

  

https://android.googlesource.com/platform/packages/apps/ Launcher2.git??

????????????????????????????

git clone https://android.googlesource.com/platform/packages/apps/Launcher2.git

????????????Launcher2 ????????????????????????????????????????????????????

????Git???????????????????????????Git???????????????? ?

他のヒント

???????????????????????????????:

<activity....>
<!-- Put this filter inside the activity to make it the Home screen -->
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.HOME" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top