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

Search results

  1. J

    Apps DP scaling issues.

    I thought using DP in my dimensions would make the UI fit on different screen sizes but I'm having issues. On my Moto Droid, it takes up the full width as I want it to, but on the 320x480 emulator my last box (v1_0) is cut off. Anyone know what I'm doing wrong; how to get them to appear the same...
  2. J

    Apps Looking for Alpha Testers - Map Based Image Sharing

    Pic of the Town is a Android, Google Maps based picture netowrking app that I am developing for fun in my free time. In its simplest form, the app just displays User uploaded images on a Google Map. I'd appreciate any time you can give to help me test this app so if you could...
  3. J

    Apps Send an Image, ACTION_SEND

    MapImage Img = (MapImage) ((Button) v).getTag(); ByteArrayOutputStream Os = new ByteArrayOutputStream(); Img.Bm.compress(CompressFormat.JPEG, 100, Os); byte[] ImgBytes = null; try { Os.flush()...
  4. J

    Apps ImageView within ScrollView, Height problem

    I'm using the following layout XML <?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent"> <LinearLayout android:layout_width="fill_parent"...
  5. J

    Apps MapView & onTouch events

    Hello everyone! Hopefully I can get some help here; the google group does not seem very helpful. I'm a beginner to the Android SDK as well as java for that fact (VB.NET background). I have a map with some geometry drawn on it by overriding the onDraw event. I'm trying to detect when the user...