Win a copy of Java Persistence with Spring Data and Hibernate this week in the Spring forum!
  • 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
  • Ron McLeod
  • Tim Cooke
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • Junilu Lacar
  • Rob Spoor
  • Jeanne Boyarsky
Saloon Keepers:
  • Stephan van Hulst
  • Carey Brown
  • Tim Holloway
  • Piet Souris
Bartenders:

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.
 
We must storm this mad man's lab and destroy his villanous bomb! Are you with me tiny ad?
The Low Tech Laboratory Movie Kickstarter is LIVE NOW!
https://www.kickstarter.com/projects/paulwheaton/low-tech
reply
    Bookmark Topic Watch Topic
  • New Topic