application-icon

Make a dynamic launcher icon

好久不见. 提交于 2019-12-21 14:08:37
问题 I want to create a launcher icon similar to the native Messaging application in Android. The icon of this app has an image but also have a dynamically changing number(a counter of some sort that corresponds to the number of unread messages). Also this icon it is not an widget, as it's an actual icon that's present in the application drawer. Can someone explain to me how I can go about to achieve this? I found some solution that includes a widget with the dimensions set to 1x1 but I do not

App Icon not changing when app version is updated in iOS 5 simulator

牧云@^-^@ 提交于 2019-12-20 12:33:49
问题 I recently started using Xcode 4.2 and the iOS 5 simulator. When I update an older version of my app pre-installed in the simulator, it updates the app just fine but the app icon is not updated. Even with cleaning and building the app ahead of time (sometimes a couple of times) this seems to be the case. Is this a bug or am I doing something wrong? EDIT: Still the same problem, but when I quit the simulator and start it again (NOT deleting the app), the icon is updated. That's a little

Qt for android: change the application icon

妖精的绣舞 提交于 2019-12-12 09:34:45
问题 How would I change the icon of Qt project targeted for android so that the launcher of application has this icon? 回答1: You should create an Android manifest file and edit it in Qt Creator. Go to Projects > Build Android APK > Details Now Select Create Templates to create the manifest file and to open it in editor : As shown in the picture, you can set three versions of icons for your application with low, medium, and high DPI values, from left to right. This new way of making an android

Qt for android: change the application icon

好久不见. 提交于 2019-12-05 01:01:45
How would I change the icon of Qt project targeted for android so that the launcher of application has this icon? You should create an Android manifest file and edit it in Qt Creator. Go to Projects > Build Android APK > Details Now Select Create Templates to create the manifest file and to open it in editor : As shown in the picture, you can set three versions of icons for your application with low, medium, and high DPI values, from left to right. This new way of making an android manifest file is available since Qt 5.4 along Qt Creator 3.3. There used to be a Create AndroidManifest.xml

App Icon not changing when app version is updated in iOS 5 simulator

半腔热情 提交于 2019-12-03 02:51:23
I recently started using Xcode 4.2 and the iOS 5 simulator. When I update an older version of my app pre-installed in the simulator, it updates the app just fine but the app icon is not updated. Even with cleaning and building the app ahead of time (sometimes a couple of times) this seems to be the case. Is this a bug or am I doing something wrong? EDIT: Still the same problem, but when I quit the simulator and start it again (NOT deleting the app), the icon is updated. That's a little encouraging at least. Has anyone else experienced this? Despite others' answers, it would appear that your

How to assign Application Icon that will display in Task bar?

北慕城南 提交于 2019-11-30 13:42:58
问题 I am working on a Wpf desktop application, whenever i run my application it shows me a window and associated tab in the task bar(Normal windows feature). My problem is that the tab is using window's icon for unknown file-type, I tried with Icon property of Window, Icon gets assigned but still problem is when I run application, task bar Tab initially displays window's icon for unknown file-type and when window-load completes it changes to the Icon assigned. I want Icon there from beginning.

How to assign Application Icon that will display in Task bar?

放肆的年华 提交于 2019-11-30 07:49:56
I am working on a Wpf desktop application, whenever i run my application it shows me a window and associated tab in the task bar(Normal windows feature). My problem is that the tab is using window's icon for unknown file-type, I tried with Icon property of Window, Icon gets assigned but still problem is when I run application, task bar Tab initially displays window's icon for unknown file-type and when window-load completes it changes to the Icon assigned. I want Icon there from beginning. Any help? Edit: I tried with .csproj --> Properties --> Application Tab --> Icon and set it to a .ico

Is it possible to display a wpf window without an icon in the title bar?

为君一笑 提交于 2019-11-29 16:02:52
问题 As we all know, if the icon for a wpf window is undefined then the default icon is displayed. I want to display a window without any icon in the title bar. I realise that I could use a blank image, however this would cause the text in the title bar to be offset to the right. Does anyone know of a way to completely remove the icon? (I tried searching for a similar question but couldn't find anything.) 回答1: Simple, add this code to your window: [DllImport("user32.dll")] static extern uint

How to change the icon and label of an app once it is installed?

大兔子大兔子 提交于 2019-11-29 11:11:22
I am trying to change the icon and label of my app once it is installed. In the manifest, i put this code : <application android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/MyTheme" > // 1st Activity declaration <activity android:name=".activities.SplashScreenActivity" android:configChanges="orientation|keyboardHidden|screenSize" android:screenOrientation="portrait" android:theme="@style/Theme.Sherlock.NoActionBar" > <intent-filter> <action android:name="android.intent.action.MAIN" /> // I removed the next line to put it with the alias : // <category

How to provide different launcher icon per product flavour

前提是你 提交于 2019-11-28 22:51:43
I have a project defined by build.gradle file buildscript { repositories { mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:0.5.6' } } apply plugin: 'android' dependencies { compile fileTree(dir: 'libs', include: '*.jar') } android { compileSdkVersion 17 buildToolsVersion "17.0.0" sourceSets { main { manifest.srcFile 'AndroidManifest.xml' java.srcDirs = ['src'] resources.srcDirs = ['resources'] aidl.srcDirs = ['src'] renderscript.srcDirs = ['src'] res.srcDirs = ['res'] assets.srcDirs = ['assets'] } instrumentTest.setRoot('tests') } defaultConfig { ... } signingConfigs