• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Recent content by MIIISTER NEUGIT

  1. M

    Over-the-top Greeting Cards

    My new app "Jaded Greeting Cards" is a brand new app that you can use to send friends and family regular and Over-the-top greeting cards. You can share them using any app installed on your phone that will allow you to do so, like text messaging, gmail, facebook, etc. I add new cards to my...
  2. M

    Apps "Sorry, you can't send this image"

    I have the following code: Intent share = new Intent(Intent.ACTION_SEND); URL Iurl = null; try { Iurl = new URL(Data.imageURL); } catch (MalformedURLException e) { e.printStackTrace(); } share.setType("image/jpeg")...
  3. M

    What is the best Android Phone?

    What is the best Android Phone for a major techie? What has the most ram, fastest processor, must have accelerometer, and feel sturdy. What do you suggest?
  4. M

    Apps How to use other applications to handle action

    How to you make it so if a user does something, it asks them how they want to do it and it brings them to that application? Like if you go "Share" a photo or video it pops up a list with all apps that can do that for you like facebook or text or email , ect.? I am asking how to have my app use...
  5. M

    Apps Display image from the Internet with ImageView?

    I have an image view object declared in the main class for my app ImageView iv = new InageView; I am able to view a picture in the res/drawable folder but when I use setImageUri method, nothing appears.
  6. M

    Apps Use ImageView in ListActivity?

    Right now my app is Extending ListActivity. I have to use this because I don't get the info for my lists from an XML file in the app, but from my server, and putting the data in with the setListAdapter method in ListActivity. After pressing an item in my list, I need to go to a ImageView. When...
  7. M

    Apps What is wrong with this code?

    I have the following code: public static String[] GetCategories(APPCLASS i) throws IOException { URL url = new URL("http://192.168.1.72/getcategories.php"); URLConnection conn = url.openConnection(); InputStream is = conn.getInputStream(); Writer writer = new...
  8. M

    Apps How can you tell if the "Back" button on the device is pressed.

    In my application I need to be able to invoke a method when the back button on the device is pressed. How do I do that?