[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kvm-interest
Subject:    Re: Icon for Sharp 902 Vodafone 3G phone
From:       Bobby Contral <info () M-FUSE ! COM>
Date:       2005-06-29 12:10:14
[Download RAW message or body]

Hi,

I tried the 27*27 icon size with a 72dpi resolution and a bit depth of 4 which seems \
to work nicely.

For the vodafone 902 download problem when the app works the first time but not the \
second time, I think it may be because I used a different sim card the second time \
and maybe the application is locked to the simcard which downloads it? Has anyone \
heard anything similar to this?

The only outstanding error I have with this handset now is playing Sound. The exact \
same code I use for playing an mmf file on the GX30, crashes when attempting to play \
on the 902sh, any ideas? My code is below:

 private static byte[] getMedia(String filename) {
        byte abyte[] = null;
        try
        {
            InputStream inputstream = getClass().getResourceAsStream(filename);
            ByteArrayOutputStream bytearrayoutputstream = new \
                ByteArrayOutputStream(); 
            for(int fsize = inputstream.read(); fsize >= 0; fsize = \
inputstream.read())  bytearrayoutputstream.write(fsize);
            abyte = bytearrayoutputstream.toByteArray();
        } 
        catch(Exception exception) { }
        return abyte;
    }
    private static byte mediadata[];
    mediaplayer = new MediaPlayer((byte[])null);
    mediadata = getMedia("/music.mmf")
    mediaplayer.setMediaData(mediadata);
    mediaplayer.play(true); 


Cheers,

Bobby
  ----- Original Message ----- 
  From: Kirwan Lyster 
  To: KVM-INTEREST@JAVA.SUN.COM 
  Sent: Wednesday, June 29, 2005 9:14 AM
  Subject: Re: Icon for Sharp 902 Vodafone 3G phone


  I've not tried the 902, but for the Sharp GX range I eventually settled on a 27x27 \
icon. It still looks a little fuzzy, but less so than smaller or larger icons. If \
anyone knows the magic size that might avoid fuzziness altogether (if the possibility \
exists) I'd be interested to know what it is.

  Cheers,
  Kirwan


  Bobby Contral wrote: 
    Hi All,

    Does anyone know what the required icon size is for this phone please? Or if
    there are any special requirements to get the phone to display the icon? The icon \
is displayed fuzzily.

    Also if anyone can think why once the application has been downloaded and has \
been run once then the second time the name of the app is greyed out and unable to \
run. The icon changed as well to have the java logo on it instead of the fuzziness.

    Any help is much appreciated,

    Thanks,

    Bobby
    =========================================================================== To \
unsubscribe, send email to listserv@java.sun.com and include in the body of the \
message "signoff KVM-INTEREST". For general help, send email to listserv@java.sun.com \
and include in the body of the message "help". 


  -- 
  Kirwan Lyster » Reporo 
  e » kirwan.lyster@reporo.com
  t » +44 (0)20 7928 8128

  Reporo
  Europoint Centre
  5-11 Lavington Street
  London
  SE1 0NZ
  United Kingdom

  t » +44 (0)20 7928 8128

  w » www.reporo.com


------------------------------------------------------------------------------
  Disclaimer »
  The information contained in this e-mail is confidential and is intended for the \
recipient only.  If you have received it in error, please notify us immediately by \
reply e-mail and then delete it from your system.  Please do not copy it or use it \
for any other purposes, or disclose the content of the e-mail to any other person or \
store or copy the information in any medium.  The views contained in this e-mail are \
                those of the author and not necessarily those of Reporo. 
------------------------------------------------------------------------------

  =========================================================================== To \
unsubscribe, send email to listserv@java.sun.com and include in the body of the \
message "signoff KVM-INTEREST". For general help, send email to listserv@java.sun.com \
and include in the body of the message "help".

===========================================================================
To unsubscribe, send email to listserv@java.sun.com and include in the body
of the message "signoff KVM-INTEREST".  For general help, send email to
listserv@java.sun.com and include in the body of the message "help".


[Attachment #3 (text/html)]

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content=text/html;charset=ISO-8859-1>
<META content="MSHTML 6.00.2900.2668" name=GENERATOR></HEAD>
<BODY text=#000000 bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Hi,</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>I tried the 27*27 icon size with a 72dpi resolution 
and a bit depth of 4 which seems to work nicely.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>For the vodafone 902 download problem when the app 
works the first time but not the second time, I think it may be because I used a 
different sim card the second time and maybe the application is locked 
to&nbsp;the simcard which downloads it? Has&nbsp;anyone heard anything similar 
to this?</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>The only outstanding error I have with this handset 
now is playing Sound. The exact same code I use for playing an mmf file on the 
GX30, crashes when attempting to play on the 902sh, any ideas? My code is 
below:</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial><FONT face=Courier size=2>&nbsp;private static byte[] 
getMedia(String filename) {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; byte 
abyte[] = null;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
try<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
InputStream inputstream = 
getClass().getResourceAsStream(filename);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \
 ByteArrayOutputStream bytearrayoutputstream = new ByteArrayOutputStream(); 
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for(int 
fsize = inputstream.read(); fsize &gt;= 0; fsize = 
inputstream.read())<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \
 bytearrayoutputstream.write(fsize);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \
 abyte = 
bytearrayoutputstream.toByteArray();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
} <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; catch(Exception exception) { 
}<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return 
abyte;<BR>&nbsp;&nbsp;&nbsp; }</FONT>
<P><FONT face=Courier size=2>&nbsp;&nbsp;&nbsp; private static byte 
mediadata[];<BR>&nbsp;&nbsp;&nbsp; mediaplayer = new 
MediaPlayer((byte[])null);<BR>&nbsp;&nbsp;&nbsp; mediadata = 
getMedia("/music.mmf")<BR>&nbsp;&nbsp;&nbsp; 
mediaplayer.setMediaData(mediadata);<BR>&nbsp;&nbsp;&nbsp; 
mediaplayer.play(true); </FONT></P></FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Cheers,</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Bobby</FONT></DIV>
<BLOCKQUOTE 
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 \
2px solid; MARGIN-RIGHT: 0px">  <DIV style="FONT: 10pt arial">----- Original Message \
----- </DIV>  <DIV 
  style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> 
  <A title=kirwan.lyster@REPORO.COM 
  href="mailto:kirwan.lyster@REPORO.COM">Kirwan Lyster</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>To:</B> <A title=KVM-INTEREST@JAVA.SUN.COM 
  href="mailto:KVM-INTEREST@JAVA.SUN.COM">KVM-INTEREST@JAVA.SUN.COM</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>Sent:</B> Wednesday, June 29, 2005 9:14 
  AM</DIV>
  <DIV style="FONT: 10pt arial"><B>Subject:</B> Re: Icon for Sharp 902 Vodafone 
  3G phone</DIV>
  <DIV><BR></DIV><FONT size=-1><FONT face="Helvetica, Arial, sans-serif">I've 
  not tried the 902, but for the Sharp GX range I eventually settled on a 27x27 
  icon. It still looks a little fuzzy, but less so than smaller or larger icons. 
  If anyone knows the magic size that might avoid fuzziness altogether (if the 
  possibility exists) I'd be interested to know what it 
  is.<BR><BR>Cheers,<BR>Kirwan<BR><BR></FONT></FONT><BR>Bobby Contral wrote: 
  <BLOCKQUOTE cite=mid343001c57c18$e8984600$2602a8c0@dynamobrian type="cite">
    <META content="MSHTML 6.00.2900.2668" name=GENERATOR>
    <STYLE></STYLE>

    <DIV><FONT face=Arial size=2>Hi All,</FONT></DIV>
    <DIV>&nbsp;</DIV>
    <DIV><FONT face=Arial size=2>Does anyone know what the required icon size is 
    for this phone please? Or if<BR>there are any special requirements to get 
    the phone to display the icon? The icon is displayed 
    fuzzily.<BR></FONT></DIV>
    <DIV><FONT face=Arial size=2>Also if anyone can think why once the 
    application has been downloaded and has been run once then the second time 
    the name of the app is greyed out and unable to run. The icon changed as 
    well to have the java logo on it instead of the fuzziness.</FONT></DIV>
    <DIV>&nbsp;</DIV>
    <DIV><FONT face=Arial size=2>Any help is much appreciated,</FONT></DIV>
    <DIV>&nbsp;</DIV>
    <DIV><FONT face=Arial size=2>Thanks,</FONT></DIV>
    <DIV>&nbsp;</DIV>
    <DIV><FONT face=Arial 
    size=2>Bobby</FONT></DIV>=========================================================================== \
  To unsubscribe, send email to <A class=moz-txt-link-abbreviated 
    href="mailto:listserv@java.sun.com">listserv@java.sun.com</A> and include in 
    the body of the message "signoff KVM-INTEREST". For general help, send email 
    to <A class=moz-txt-link-abbreviated 
    href="mailto:listserv@java.sun.com">listserv@java.sun.com</A> and include in 
    the body of the message "help". </BLOCKQUOTE><BR>
  <DIV class=moz-signature>-- <BR><FONT face="Arial, Helvetica, sans-serif" 
  color=#000000 size=-1>Kirwan Lyster » Reporo 
  <P>e » <A 
  href="mailto:kirwan.lyster@reporo.com">kirwan.lyster@reporo.com</A><BR>t » +44 
  (0)20 7928 8128</P>
  <P>Reporo<BR>Europoint Centre<BR>5-11 Lavington Street<BR>London<BR>SE1 
  0NZ<BR>United Kingdom</P>
  <P>t » +44 (0)20 7928 8128</P>
  <P>w » <A href="http://www.reporo.com">www.reporo.com</A></P>
  <HR>
  Disclaimer »<BR>The information contained in this e-mail is confidential and 
  is intended for the recipient only.<BR>If you have received it in error, 
  please notify us immediately by reply e-mail and then delete it from your 
  system.<BR>Please do not copy it or use it for any other purposes, or disclose 
  the content of the e-mail to any other person or store or copy the information 
  in any medium.<BR>The views contained in this e-mail are those of the author 
  and not necessarily those of Reporo. 
  <HR>
  </FONT></DIV>=========================================================================== \
  To unsubscribe, send email to listserv@java.sun.com and include in the body of 
  the message "signoff KVM-INTEREST". For general help, send email to 
  listserv@java.sun.com and include in the body of the message "help". 
</BLOCKQUOTE></BODY></HTML>
===========================================================================
To unsubscribe, send email to listserv@java.sun.com and include in the body
of the message "signoff KVM-INTEREST".  For general help, send email to
listserv@java.sun.com and include in the body of the message "help".



[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic