android-icons

Android - Failed to run aapt dump badging: 'android:icon' attribute: attribute value reference does not exist

寵の児 提交于 2021-01-28 14:20:49
问题 I have been trying to upload my APK to Play Store, but it keeps showing me this error: Failed to run aapt dump badging: AndroidManifest.xml:31: error: ERROR getting 'android:icon' attribute: attribute value reference does not exist It is a very simple app, here is the Manifest: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="mx.com.hearwego.mexicocityaudioguideapp"> <uses-permission android:name="android.permission.ACCESS

Android - Failed to run aapt dump badging: 'android:icon' attribute: attribute value reference does not exist

风流意气都作罢 提交于 2021-01-28 14:15:30
问题 I have been trying to upload my APK to Play Store, but it keeps showing me this error: Failed to run aapt dump badging: AndroidManifest.xml:31: error: ERROR getting 'android:icon' attribute: attribute value reference does not exist It is a very simple app, here is the Manifest: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="mx.com.hearwego.mexicocityaudioguideapp"> <uses-permission android:name="android.permission.ACCESS

How to generate rounded square launcher icon android

主宰稳场 提交于 2020-11-30 12:41:09
问题 I try to generate new launcher icon for my android project. I am taking png icon 512x512 and through Android Studio I am converting it New->Image Asset->(Launcher Icons Adaptive and legacy). It generates icon, but the size of radius of rounded square is less than it was 7 month ago when I generated it for the first time. How can I make bigger radius for icon corners? Or it's new default icons for android? Thanks. 回答1: Using this you can generate the rounded icon for the launcher. https:/

You need to check the icon inside your APK because it is not valid

两盒软妹~` 提交于 2020-07-03 06:15:25
问题 While trying to upload my apk im getting this error..."You need to check the icon inside your APK because it is not valid." Manifest Code <application android:allowBackup="true" android:icon="@drawable/wallet_logo" android:label="Wallet" android:supportsRtl="true" android:theme="@style/AppTheme"> My logo is a vector asset 回答1: Your launcher icon should be in png format. Read this. You should probably follow this convention and convert your vector to png and it should work. 回答2: The app icon

Is it possible to have animated launcher icons for android apps? [closed]

六眼飞鱼酱① 提交于 2020-01-30 04:28:23
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I am just curios if Android supports animated launcher icons like the iOS has the Calendar app which always shows the current day or the Clock which has a moving hand on the icon. 回答1: Not in general. Android has app widgets for that. Some home screen implementations might offer developers an API to have

Adding android drawable to menu XML stop app compiling

血红的双手。 提交于 2020-01-15 12:08:17
问题 I am working on an android project and have an XML file for the action bar menu, its been working fine, but I now need to add an extra item with an icon, but it this displays an error in the eclipse tab and the console output. If I remove the icon field, then its fine, but if I add the icon, then I get the error. Below is the XML that contains the menu item. I've included one item that previously worked and the new item that isn't working <item android:id="@+id/mnu_search" android:title=

android.support.v7 Toolbar & DrawerLayout- how to change Hamburger icon

陌路散爱 提交于 2020-01-05 03:52:05
问题 My application uses ActionBarActivity and DrawerLayout and etc. i want to change the ActionBarDrawerToggle icon to be custom drawable. in my code i use android.support.v7.widget.Toolbar as SupportActionBar this is my code: toolbar.setNavigationIcon(R.drawable.lifeline_shield); setSupportActionBar(toolbar); ActionBar actionbar = getSupportActionBar(); actionbar.setDisplayHomeAsUpEnabled(true); actionbar.setDisplayShowTitleEnabled(false); mDrawerToggle = new ActionBarDrawerToggle(this,

Custom overflow icon is too big (Using android.support.v7 and AppCompat)

徘徊边缘 提交于 2020-01-05 02:48:33
问题 My goal is to have the action bar be a red color, but since my only options from the default android library were white and black, I tried customizing it. I made some custom red icons by using a paint bucket on gimp to just fill in the white icons and re-save it under a different name. I did the same thing with the overflow icon, but for some reason, it's rendering a lot bigger than my other icons, which I don't want. I am using android:minSdkVersion="15" and targetSdkVersion 21 and the

How to show notification count on app icon like Facebook?

非 Y 不嫁゛ 提交于 2019-12-31 19:28:07
问题 I want to show unread notification count on my app icon when app is not opened. this post seems to be close but it is 3 years old . Has there been any change on this or I should go with solutions provided in the accepted answer? 回答1: Unfortunately you cant achieve this for all android devices. Certain manufacturers (e.g. Samsung or Sony) have included this functionality into their customised Android launchers. Also some 3rd-party launchers (e.g. Nova Launcher) have included an API to

Standard Android menu icons, for example refresh [closed]

放肆的年华 提交于 2019-12-27 12:08:11
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . The Android SDK offers the standard menu icons via android.R.drawable.X . However, some standard icons, such as ic_menu_refresh (the refresh icon), are missing from android.R . Is there any way to get the original icons, maybe by extracting them from the applications? I already checked the Android source, but it