-
2 Sep 2010 2:52 AM #1
Multiple icons
Multiple icons
Just working on my 1st sencha touch app and i'm having problems with finding information on the best approach for the app icon. After doing some research it seems the best approach for ipad iphone iphone 4 icons is to produce multiple versions 57px square for the iPhone 3G and 3GS, 72px for the iPad, and 114px for the iPhone4. Looking at the documentation for sencha touch I found the following :
How does this work for multiple icons sizes bear in mind the iphone and iphone 4 having different sizingCode:Ext.setup({ icon: 'icon.png', glossOnIcon: false, tabletStartupScreen: 'tablet_startup.png', phoneStartupScreen: 'phone_startup.png',
-
2 Sep 2010 6:09 AM #2Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- Frederick MD, NYC, DC
- Posts
- 16,169
- Vote Rating
- 28
I had the exact same question yesterday. I hope the dev team can answer this one.

Jay Garcia @ModusJesus || Modus Create co-founder
Ext JS in Action author
Sencha Touch in Action author
Get in touch for Ext JS & Sencha Touch Touch Training
We are also working on Video-based Sencha Touch training: Check it out here.
-
12 Sep 2012 10:26 AM #3
Ext.application({
// Change the values below to re-configure the app for a different conference.
title: 'App Name',
// App namespace
name: 'MyApp',
phoneStartupScreen: 'resources/loading/Default.png',
tabletStartupScreen: 'resources/loading/Default~ipad.png',
glossOnIcon: false,
icon: {
57: 'resources/icons/icon.png',
72: 'resources/icons/icon@72.png',
114: 'resources/icons/icon@2x.png'
},
.
.
.
Similar Threads
-
[DUPE] DirectStore & Ext.Direct creates multiple Actions multiple changes happen
By Dumas in forum Ext 3.x: BugsReplies: 3Last Post: 14 Apr 2010, 7:23 AM -
multiple icons on an element
By piston in forum Ext 2.x: Help & DiscussionReplies: 0Last Post: 17 Dec 2008, 9:16 AM -
Setting multiple icons to the tree nodes
By sangharsha in forum Ext 2.x: Help & DiscussionReplies: 2Last Post: 21 Jan 2008, 1:26 AM -
[Solved] Multiple column layouts in multiple tabs in FormPanel
By zzo in forum Ext 2.x: Help & DiscussionReplies: 4Last Post: 29 Nov 2007, 10:03 PM -
View icons & twistie icons - update
By captainm1uk in forum Ext.nd for Notes/DominoReplies: 2Last Post: 16 Oct 2007, 5:25 AM


Reply With Quote



Alessandro Nunes