0
我實現了一個應用程序,其中有一個活動旨在用於共享文本。一切正常,文本正在共享等。但如果我想分享一些文本,執行共享操作提供了一些應用程序,可以處理共享文本。有我的應用程序,但顯示圖標不等於默認ic_launcher。當系統提供可處理共享文本的應用程序時,如何更改我的應用程序的圖標?更改我的應用程序中特定的活動圖標分享
謝謝。
我實現了一個應用程序,其中有一個活動旨在用於共享文本。一切正常,文本正在共享等。但如果我想分享一些文本,執行共享操作提供了一些應用程序,可以處理共享文本。有我的應用程序,但顯示圖標不等於默認ic_launcher。當系統提供可處理共享文本的應用程序時,如何更改我的應用程序的圖標?更改我的應用程序中特定的活動圖標分享
謝謝。
您可以在清單文件更改應用..
<application
android:icon="@drawable/ic_launcher" //---- here--put your new icon in drawable folders and change it here
android:label="@string/app_name" // same thing.. change your app name in string.xml file.. then, here app name will change automatically....
android:theme="@style/AppTheme" >
<activity
android:name=".ui.MainActivity"
android:label="@string/title_activity_main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
try this..
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
謝謝,是的,我終於找到了答案如何做到這一點。主要的問題是,這是兩種類型:圖標和徽標。我只在清單文件中爲活動設置了徽標。在我設置任一標誌圖標後,一切正常。 – feromakovi
你的問題不明確!如果您的應用圖標不符合您的期望,請檢查您的可繪製文件夾中的ic_launcher圖標。 –