Changing the Application icon in Facebook? - android

I have created an Application in Facebook for my Android app. At the time of setting up,I missed to add my app icon there.
How to edit the icon ?
Somebody please help.
I need to change this custom icon to my app icon.

Finally i figured out this.It can be changed from App Details tab.

Related

Partially changed launcher icon of android app

I have completed my first app and having problem with launcher icon.
I have repalced the default ic_launcher icon in mipmap folder with my own icon.
When i install the app, it shows the correct icon in phone's menu. But when i open application manager in phone , there it shows the default icon.
Also when i open shareit or xender there also my app has default icon.....
I have spent two days searching for answer and tried all suggestions..But none of them are working.....Please give me a solution....
It is bad practice to just overwrite the icon this way. It is advisable to edit the AndroidManifest.xml file. In the application tag you will find android:icon="#drawable/ic_launcher", change it to the icon you want that is placed in the drawable folder. That way it will be applied everywhere.
For more information: How to change the launcher logo of an app in Android Studio?

Adding an image to android's phone top bar

I want to add an image- once my app is installed on the android to the top bar (where the battary information is, the whatsup icon and so on...)- I'm sorry I couldnt fint it's technical name
Do you know how could this be done?
Notifications are used for that.
all you need is Notification. See this link to learn more about notification.

Default Settings launcher icon

I'm at a loss trying to find the default icon used for the Settings application launcher under \android-sdk\platforms\android-10\data\res\drawable-mdpi\
What name does this icon have? can I use it in my application? here it is:
2.2:
4.0:
If you're looking for a "settings" button for your app, you can include the system icon in your xml using #android:drawable/ic_menu_preferences. It won't get you the nice, colored version you included above, but makes a perfect settings icon in your menu or ActionBar.
I described way you can retrieve full resolution icon of every app installed on your phone/pad here: Getting App Icon in Android.
So all you need is find package name of this app.
It's not as simple as retrieving standard android icon from android resources, but however it can help you.

Android application icon changes with runtime

In my app I want to display different icons for the application. Changes should be according to the scenario. For example, it will mark the number of days remaining for the task completion. On the android menu this icon will display the number of days remaining. If anyone has any idea for this, I would appreciate it. Thanks.
There are actually a number of ways to achieve this. If you notice Google's clock app these days, it does show the current time.
You can refer to this tutorial: https://blog.jakelee.co.uk/programmatically-changing-app-icon/
Or find even more ways here: How to change an application icon programmatically in Android?
As far as i know, you cant. Also refer to this answer:
Android Application Icon Change
I am afraid you can't change your app's icon programmatically. How to change an application icon programmatically in Android?
This can be done easily. Within your activity code, just write:
getActionBar().setIcon(R.drawable.new_icon);

wikitude does not show icon

I have a problem with Wikitude on Android, the icons related at the POI are not shown, I have the market but without the icon. I set the icon in this way:
poi1.setIconresource("com.mitcom.wigo:drawable/icon_48x48");
where icon_48x48 is the resource.
The strange thing is that I was able to show the icon in dev mode, when I put the app on the market I faced this problem.
Thanks
have you tried it with setIconResorce(getResources().getResourceName(R.drawable.icon_48x48));
I think it will solve your problem.

Categories

Resources