문제

I want to have multiple launcher icons for my application. I can get this to work fine on some phones simply by adding the following to the Activity definitions

  <intent-filter>
    <action
      android:name="android.intent.action.MAIN" />
    <category
      android:name="android.intent.category.LAUNCHER" />
  </intent-filter>

Unfortunately this doesn't appear to work for HTC Sense phones - I just get the first Activity declared like this.

Anyone know how to do this for HTC Sense too?

Phil

도움이 되었습니까?

해결책

OK, I was just being dumb (always seems to be the case when I ask a question on stackoverflow). I uninstalled the app and re-installed it and the missing icons appeared.

Phil

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top