|
|
On Fri, Dec 17, 2010 at 7:43 PM, Sandia_Man <andresyo990@xxxxxxxxx> wrote:
> The only way to make my app compatible with all the phones in market > that supports different screen resolutions is to make diferent UI for > each "skin" of the AVD?? Or, design layouts that adapt well to different screen sizes, and supply appropriate drawable resources for screen densities. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to *Advanced* Android Development_ Version 1.9 Available! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@xxxxxxxxxxxxxxxx To unsubscribe from this group, send email to android-developers+unsubscribe@xxxxxxxxxxxxxxxx For more options, visit this group at http://groups.google.com/group/android-developers?hl=en
Thread at a glance:
Previous Message by Date:[android-developers] Re: Fm Radiothanks again mr bob, and how i can to view the code from FM Radio app? i wish you good luck from everything you do!!!!! On Dec 17, 5:06 pm, Bob Kerns <r...@xxxxxxx> wrote: > By the way, I got my build with the FM Radio app here: > > http://tinyurl.com/modoco-kitchen-with-fm > (that's a shortened link to android.modoco.com). > > On Dec 17, 1:26 am, wolf <wolfy1...@xxxxxxxxx> wrote:> thank you mr bob!!!! > > > On Dec 16, 1:58 pm, Bob Kerns <r...@xxxxxxx> wrote: > > > > Well, I doubt HTC is going to tell you, so your best approach, I > > > think, would either to see what the people who integrated it on to > > > Nexus One did, or to reverse engineer the com.htc.fm app yourself. > > > > I suspect that's more trouble than it's worth, as the result won't be > > > something that's supported, and will only work on a limited number of > > > devices. > > > > On Dec 16, 12:59 am, wolf <wolfy1...@xxxxxxxxx> wrote:> thanks mr brill, > > > you are closer than the other answer, i want to know > > > > how the FM Radio app is work, the code, not how to use it in my > > > > programs. > > > > > On Dec 15, 3:07 pm, Bob Kerns <r...@xxxxxxx> wrote: -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@xxxxxxxxxxxxxxxx To unsubscribe from this group, send email to android-developers+unsubscribe@xxxxxxxxxxxxxxxx For more options, visit this group at http://groups.google.com/group/android-developers?hl=en Next Message by Date:[android-developers] start a new activity and then... come back to the old one!Hello Android gurus, I would like to do the following: in my app's 'Help' area, have a button that launches the default email application and lets users drop me an email. That seems simple huh? Let's just create a new Activity ( code shamelessly stolen from http://www.androidsnippets.org/snippets/29/index.html ) this way: final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); emailIntent.setType("plain/text"); emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[] {"to@xxxxxxxxx"}); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject"); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "Text"); context.startActivity(Intent.createChooser(emailIntent, "Send mail...")); now, that *almost* works. Almost, because there are two problems with it: 1) when user exits the mail application ( either by actually sending the email or simply by pressing the 'BACK' button ) then he gets kicked out of my app entirely ( back to the main screen, while it should go back to my app! ) 2) when having the email application on top, user presses the 'HOME' button, the Android correctly comes back to the main screen. However, when I now re-launch my app, user lands in the mail application again, which is confusing. I would like him to get back to my app's main activity. Adding the following line emailIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET); does not help. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@xxxxxxxxxxxxxxxx To unsubscribe from this group, send email to android-developers+unsubscribe@xxxxxxxxxxxxxxxx For more options, visit this group at http://groups.google.com/group/android-developers?hl=en Previous Message by Thread:[android-developers] The only way to make my app compatible is...The only way to make my app compatible with all the phones in market that supports different screen resolutions is to make diferent UI for each "skin" of the AVD?? And an other question, where can I find examples with code of UI, because I'm trying to build something nice but I nice some examples to see how to make it... Thanks a lot! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@xxxxxxxxxxxxxxxx To unsubscribe from this group, send email to android-developers+unsubscribe@xxxxxxxxxxxxxxxx For more options, visit this group at http://groups.google.com/group/android-developers?hl=en Next Message by Thread:[android-developers] ADB Failed - Dalvik Debug MonitorHi all, I'm trying to start dalvik monitor so I can take screenshots of my app but im getting an errror :( I'm running Win 7 64bit (SDK installed through installer and paired with 32bit jdk) Error im getting is this: 03:24:39 E/adb: Failed to get the adb version: Cannot run program "adb": CreateP rocess error=2, The system cannot find the file specified Any one can help me out here? Thank you! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@xxxxxxxxxxxxxxxx To unsubscribe from this group, send email to android-developers+unsubscribe@xxxxxxxxxxxxxxxx For more options, visit this group at http://groups.google.com/group/android-developers?hl=en
|
|