作者: carlkyo 時間: 2021-2-24 11:26 標題: App installed through android studio not shown in Launcher
請問各位ching
我用android studio寫既app
係google chromecast with google tv 既首頁或我既app都唔顯示
要去系統既installed app都見到
firetv stick 4k又冇呢個問題
我試左下面兩個方法都唔得
請問有其他方法嗎
- <activity android:name=".MainActivity" android:label="@string/app_name_full">
- <intent-filter>
- <action android:name="android.intent.action.MAIN"/>
- <category android:name="android.intent.category.LAUNCHER"/>
- </intent-filter>
- <intent-filter>
- <action android:name="android.intent.action.VIEW" />
- <category android:name="android.intent.category.DEFAULT" />
- <category android:name="android.intent.category.BROWSABLE" />
- <data android:scheme="http"
- android:host="www.giorgos.nl"
- android:pathPrefix="/cv" />
- <data android:scheme="cv"
- android:host="giorgos"/>
- </intent-filter>
- </activity>
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- <intent-filter>
- <category android:name="android.intent.category.DEFAULT" />
- <category android:name="android.intent.category.BROWSABLE" />
- <action android:name="android.intent.action.SEND" />
- <action android:name="android.intent.action.SENDTO" />
- <data android:scheme="sms" />
- <data android:scheme="smsto" />
- <data android:scheme="mms" />
- <data android:scheme="mmsto" />
- </intent-filter>
作者: KinChungE 時間: 2021-3-2 23:47
Google TV唔同android
https://developer.android.com/training/tv/start/start
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
- </intent-filter>
