• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Inserting an image

 
Ranch Hand
Posts: 643
Android Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello ,

1.which tag should i use to embed an image into my application
how should i will be able to change the screen(I mean from first screen to second screen )

2.How i will be able to understand on which line there is an error in android application .Or how should i debug an android application.

Thanks & Regards

 
Ranch Hand
Posts: 38
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

1.which tag should i use to embed an image into my application


You can use ImageView for adding a image on Screen



how should i will be able to change the screen(I mean from first screen to second screen )


Using the following methods you can move form one Activity to other

startActivity(Intent nextScreen);
startActivityForResult(Intent intent, int requestCode);


 
Author
Posts: 131
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

How i will be able to understand on which line there is an error in android application .Or how should i debug an android application.



Use Eclipse for a full-fledged debugger. To access the error log, including exception information, you can use adb logcat, DDMS, or Eclipse.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic