[android-developers] Re: Character recognition in android?

2011-08-16 Thread ko5tik
On Aug 15, 11:01 am, Daniel Drozdzewski daniel.drozdzew...@gmail.com wrote: It is not a trivial task for a computer, let alone a mobile device. You are probably looking into neural networks, and there should be some libraries in both Java and C. It's not that hard either (see previous post)

[android-developers] Socket-Bug in Android VM (Eclipse) ???

2011-08-16 Thread Ben
Hi! I've encountered a really strange behaviour of the Android Development VM -Starting an AsyncTask as a private class from my Activity (works perfectly) -Then the programm comes to: (tv=textview) try { tv.append(before socket\n); cs = new

[android-developers] Battery usage feature request

2011-08-16 Thread Bart
Hi, The battery usage stats in Android are great, but it would be even more usefull if I would be able to see the average battery usage an hour for each app. Now you can use an app the whole day and for example use 30% of your battery. If you call for half an hour and use 20% of your battery, it

[android-developers] How to Offline Install Android SDK

2011-08-16 Thread Chaos Zero
Ive Download all archives for my windows pc from this URL http://dl-ssl.google.com/android/repository/repository.xml and next what i have to do to install them -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Hello Listview project

2011-08-16 Thread erik wagner
Hi to all, I am very new to both java and android development so this is probably a very simple question. I have been going through the various 'hello' tutorials on this site. I've hit a snag on the 'Hello Listview' (this one

[android-developers] Problem with Socket in AsyncTask

2011-08-16 Thread Ben
Hi! I'm having weird problems with a socket connection in an AsyncTask: public class diagnosis extends Activity { TextView tv; protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);

[android-developers] GLSurfaceView and CPU Usage

2011-08-16 Thread B.Arunkumar
Hi all, Does GLSurfaceView always require a higher CPU Usage? Even the GLSurfaceView examples in API Demos show a high CPU Usage in the System monitor? Thank you, B.Arunkumar -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Enhance Camera preview SDK sample to capture a subset of preview area

2011-08-16 Thread SouthAustin
Newbie question. I've looked at the CameraPreview sample and would like to enhance it to include a rectangular area with handles at the corners to allow me to select only a subset of the Camera Preview so the user can focus on a particular area with a combination of moving the camera and resizing

[android-developers] NDK Texture Problem.

2011-08-16 Thread Shoot
I have problem draw texture. It draw white plan. Thank #define TEXTURE_SIZE 100 void drawImage() { glEnable(GL_TEXTURE_2D); //Coordinate coordinatesBuffer[0] = 0.0; coordinatesBuffer[1] = 0.0; coordinatesBuffer[2] = 1.0; coordinatesBuffer[3] = 0.0;

[android-developers] kernel devices and unknown hardware devices

2011-08-16 Thread alx5962
Hi, I wanted to use an USB gamepad on my Galaxy SII so I cross-compiled the joydev kernel module. When I plug it, a new device is created on /dev/input/js0 but when I cat the device nothing happens when I press the gamepad buttons. Using DMESG I noticed my joystick is recognized as input:

[android-developers] app inventor

2011-08-16 Thread zetha
la consulta es simple, bueno seguire buscando pamientras bueno se puede usar algun motor de base de datos con app inventor ?? es que estoy aprendiendo a hacer una aplicacion donde busco por numeros citas de un libro bueno eso solamente gracias un gusto y que la pasen muy bien adios

[android-developers] Re: open nfc installation

2011-08-16 Thread ahmed elbagoury
Hi Winston, thanks for your answer it solved the problem. I want to ask about porting the OpenNFC on a real Android device,will that require having the source code of Android and the compiling it ?? I read the porting guide on OpenNFC website but i didn't understand if i should have the source

[android-developers] How to fix the error for playing video from Youtube in Android?

2011-08-16 Thread checkcheck
Hello! I need play video from Youtube in my app, i use this code: package com.AnVideoView; import android.app.Activity; import android.net.Uri; import android.os.Bundle; import android.widget.MediaController; import android.widget.VideoView; public class AnVideoView extends Activity { String

[android-developers] Widget onReceive Problem

2011-08-16 Thread bbaychev
Hello, I have a widget, that behaves awkwardly on 3rd party app updates/ installs from Android Market. It looks like the onReceive method gets called and reinstantiates the widget but it does not execute the onUpdate() method within and the widget is not clickable anymore. Any ideas what might be

[android-developers] MediaPlayer: setDataSource failed (streaming)

2011-08-16 Thread Dmitry Kazakov
Hi there. I write Android app and I want to playing music from a remote URL via HTTP streaming. In official tutorial is showed this code: String url = http://;; // your URL here MediaPlayer mediaPlayer = new MediaPlayer(); mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);

[android-developers] Select Tag - Item text not displayed in android tablet same as in Desktop browser

2011-08-16 Thread Arun David
why HTML select Tag {listbox} is not showing the text of the items when it viewed using android browser from Tablet. Desktop browser showing the items with text visible but browser in android 2.2 mobile is not showing the text of the items. sample code: html head titletest tablet/title /head

[android-developers] logic

2011-08-16 Thread bhaskar ettem
hi , i want to generate smoke effect for my application so, please please please give me some information , -- 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] Excessive JNI global references (ActivityRecord)

2011-08-16 Thread cathy lin
I met this Excessive JNI global references issue. And I found that there is 224 of Lcom/android/server/am/ActivityRecord; 268B (224 unique) in system server process when crash happened. I added some debug log found that ActivityRecord it added when ActivityManager start a new intent, but it didn't

[android-developers] Re: Active install percent metric: now it's just ridiculous!

2011-08-16 Thread LackeySoft
At least they don't show 100% active anymore, they fixed that a while back... LOL Glad you've got a sense of humor about this Doug... my OCD brings me to the stats page about 5 times an hour to anguish... The total installs # REALLY NEEDS TO BE REAL-TIME as the active installs number seems to

[android-developers] issue in showing two spinners in a dialog

2011-08-16 Thread Gerardo
hi, I would put two spinners in a dialog box but i don't manage to. Although I can put two blank spinners in the dialog, there are issues when I populate the spinners with the content inside. Can you help me, please? I post an extract of the code: protected Dialog onCreateDialog(int id){

[android-developers] Frame by frame animation, how to draw it on top of other canvas objects?

2011-08-16 Thread jakob t
Hi, I'm trying to do a frame by frame annimation in my custom class that overrides view. I use this.setBackgroundResource() then getBackground() convert it to AnimationDrawable and start it in the onDraw method. It works as expected I guess, but animation is played in the background, so in

[android-developers] NdefRecord(NdefMessage) extraction from the intent in a NFC design

2011-08-16 Thread jayhust
Hi guys, recently I've been working a very simple NFC application design on the android 2.3.3 platform. I came across a obstacle while trying to get the Tag information such as UID, Technology from the intent after a new activity was activated by an android.nfc.action.TAG_DISCOVERED event, I found

[android-developers] how to finish the voice recognition activity

2011-08-16 Thread kaizie
Im using the voice recognition activity of the android API. For those who never have used it, is something like this: Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);

[android-developers] Distance between devices

2011-08-16 Thread Lucas
Hello all, I need to measure the distance between two android devices, down to the centimeters, to develop an app I´m working on. I have researched a lot and tried some things with GPS and bluetooth, but not seems to work quite right. Do you have an idea of how I can achieve this? Thnks, Lucas

[android-developers] Device position in vitual coordinate system

2011-08-16 Thread Lucas
Hello guys, Here's the deal, I need to get the position of my device in a virtual coordinate system, let me explain. In the beginning of the app, it will calibrate the device, which is set the virtual coordinates x, y and z with 0. As the device is moved, I need to update it's location in the

[android-developers] Android Mentor Needed: Learn while building real apps

2011-08-16 Thread Jamrok
Hey Droid Devs, I'm new to android development and I'm interested in working with anyone (for free) who has built or is building android apps. My goal is to get a real world lesson on building apps. I find that once I have a goal or project working on, I'll learn what's needed to complete the

[android-developers] Re: OpenGL lockups in 2.2

2011-08-16 Thread Herko Lategan
Guys! *SOLUTION* I finally *found the solution* while watching one of the Google IO talks! I have been struggling with this problem for over 2 months now, while developing on my HTC Desire, and it made me so demotivated knowing my application will freeze randomly for some users! But

[android-developers] Android 2.2 wifi hotspot API

2011-08-16 Thread Eric Yue (Moonlight)
What is the API call I need to make in Android 2.2 (Froyo) to create a Wifi hotspot (as seen in the Tethering and Portable Hotspot settings item). -- 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] Android App Development - Make View into drawing pad for app?

2011-08-16 Thread Lucien Montierre
I have an app I'm developing, and I want to make a drawing pad out of a view i've inserted in the XML file that is being used for the setContentView(). Just to be clear, when I saw drawing pad I mean that you draw on it using the touch screen. Please help either with a tutorial or your own

[android-developers] Re: Searching for a String Within a ListView

2011-08-16 Thread Musa Shaft
You could use listView.setTextFilterEnabled(true) to allow 'automatic' filtering then use listView.setFilterText(text typed in editText) to filter the list. Works for me. On Aug 15, 8:48 pm, usafrmajor usafrma...@gmail.com wrote: I currently have an EdittText box and this code for filtering a

[android-developers] Problem with starting new activity from ListView

2011-08-16 Thread Eugene Shmorgun
Good time! I have Activity for ListView, that are wrapped on whole view: ?xml version=1.0 encoding=utf-8? LinearLayout xmlns:android=http://schemas.android.com/apk/res/ android android:orientation=vertical android:layout_width=fill_parent android:layout_height=fill_parent

[android-developers] Android

2011-08-16 Thread kante rajendra
Hii Virinchy, I can surely help on dis as i created an app based on dat... So how Can i hlp u??? -- 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@googlegroups.com To

[android-developers] Re: OutputStream of ServerSocket can't read data

2011-08-16 Thread Musa Shaft
What is the output of your logcat on the client side? What is the log output of the servlet? On Aug 15, 4:17 pm, Radeg radegas...@gmail.com wrote: Hello, I have next problem. I write client-server application, which should be work in real device. I have ClientActivity and ServerService.

[android-developers] Re: Application Device Orientation Change 2.1, 2.2 versus 2.3 and up

2011-08-16 Thread KG
Thanks! On Aug 11, 5:39 am, Mark Murphy mmur...@commonsware.com wrote: On Wed, Aug 10, 2011 at 5:49 PM, Wolf rjgoeh...@sbcglobal.net wrote: My application works fine using API 7 and API 8 for changing device orientation andrevertingback with thescreenand all state variables.

[android-developers] GC_FOR_ALLOC

2011-08-16 Thread olefevre
What kind of GC is that (Google was not much help) and more generally where can one find a description of the various kinds of GC events? Thanks, -- O.L. -- 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] Re: Schedule notification not triggered.

2011-08-16 Thread Musa Shaft
Use AlarmManager.RTC_WAKEUP instead of AlarmManager.ELAPSED_REALTIME_WAKEUP and a 'proper' time interval value, i.e. 24hrs*60mins*60secs*1000msecs for a day. On Aug 15, 10:27 pm, Alaeddine Ghribi alaeddineghr...@gmail.com wrote: 2011/8/15 TreKing treking...@gmail.com On Mon, Aug 15, 2011 at

Re: [android-developers] Re: APK Decompiler

2011-08-16 Thread Mrityunjay Ranjan
i don't know how to decompile the .dex file but you can extract the .apk file rename it as .zip and you can see the content of the project i means uncompiled file like image,logo,video,song and xml most interesting you can see the .xml file and understand the design.. :Mrityunjay -- You

[android-developers] HierarchyViewer does not show performance indicators

2011-08-16 Thread Peter
When I try Hierarchyviewer for activities running on emulator, it shows the correct tree of views. However, none of the views in the tree view display performance indicators such as colored dots. The time of measure, draw and layout are all n/a for all views except PhoneWindow$DecorView. This

[android-developers] How to display a GUI View from BroadcastReceiver?

2011-08-16 Thread and2112
I want to write a call blocker. If the user dials any calls outside of the US, I want to display a GUI telling them that they can't. I do NOT want to use Toast(). I want a full GUI View to be displayed. The problem is that while I can receive the android.intent.action.NEW_OUTGOING_CALL

[android-developers] Re: display data in database

2011-08-16 Thread Musa Shaft
if you're trying to connect to an external database like mysql, sqlserver e.t.c here's a tutorial , http://www.helloandroid.com/tutorials/connecting-mysql-database, if u're not familiar with php then u'll probably have to use a servlet (java) or a web application (.net) to connect to the database

Re: [android-developers] Help Me!!!!!

2011-08-16 Thread Mark Ayers
Here's a few good ones, all part of the same series. Beginning Android 2.x Development - http://www.mediafire.com/?5472wm23gwzc5ch Beginning Android 3.x Development - http://www.mediafire.com/?hvca129x3puafp0 Professional Android 2.x Development - http://www.mediafire.com/?91be5czarmd10va

Re: [android-developers] emulator issue

2011-08-16 Thread Mohit Agarwal
me too hvin... same problem..pls help us... On Sun, Aug 14, 2011 at 10:42 AM, arun kumar arun.kata...@gmail.com wrote: while running the app am getting the error..so how can i solve this Emulator] invalid command-line parameter: plugins. Emulator] Hint: use '@foo' to launch a

Re: [android-developers] APK Decompiler

2011-08-16 Thread Mark Ayers
http://code.google.com/p/dex2jar/ http://java.decompiler.free.fr/ On Aug 11, 2011 6:59 PM, RAJU V kathiriraj...@gmail.com wrote: Hi friends please help me.. Please tell me how to decompiler the apk file to source code files ~~RAJU~~ ~~www.itdoall.co.cc~~ -- You

Re: [android-developers] How to read *.CHM File ?

2011-08-16 Thread Nick Risaro
Here is all you need http://tinyurl.com/42r8nb2 On Fri, Aug 12, 2011 at 1:53 PM, mahdi mahdi.farz...@gmail.com wrote: Hi , i want to read *.chm file im my application and show it on textView , how can i do this ? thanks -- You received this message because you are subscribed to the Google

[android-developers] Communication Between Android App and PC

2011-08-16 Thread sar
Is that Possible to Connect Android App with PC using wifi without wifi router -- 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@googlegroups.com To unsubscribe from this

[android-developers] going thru activities

2011-08-16 Thread stansic
Hi I am working on an event management app, and I am new in developing android applications. I am trying to find a to switch to d next activity when a button is clicked. I have used the button listener method but I did not work, -- You received this message because you are subscribed to the

Re: [android-developers] Problem with Socket in AsyncTask

2011-08-16 Thread Nikolay Elenkov
On Mon, Aug 15, 2011 at 12:16 AM, Ben ben.v...@gmail.com wrote: -If I try to set the timeout of the Socket - null Pointer Exception Your socket is null at this point, hence the NPE. Move this code somewhere after new Socket(...); -If I try to connect to an existing address, I get the

[android-developers] Re: Clickable ImageView

2011-08-16 Thread warenix
You have a typo misstake here: team_background = (ImageView) findViewById(R.id.home_background); ... ImageView android:id=@+id/team_background android:layout_width=fill_parent android:layout_height=fill_parent/ -- You received this message because you are subscribed to the Google

Re: [android-developers] Widget onReceive Problem

2011-08-16 Thread Nikolay Elenkov
On Mon, Aug 15, 2011 at 5:03 PM, bbaychev bayc...@gmail.com wrote: Hello, I have a widget, that behaves awkwardly on 3rd party app updates/ installs from Android Market. It looks like the onReceive method gets called and reinstantiates the widget but it does not execute the onUpdate() method

Re: [android-developers] Android App Development - Make View into drawing pad for app?

2011-08-16 Thread Nikolay Elenkov
On Mon, Aug 15, 2011 at 1:15 AM, Lucien Montierre estone...@gmail.com wrote: I have an app I'm developing, and I want to make a drawing pad out of a view i've inserted in the XML file that is being used for the setContentView(). Just to be clear, when I saw drawing pad I mean that you draw on

Re: [android-developers] Android App Development - Make View into drawing pad for app?

2011-08-16 Thread Nikolay Elenkov
On Tue, Aug 16, 2011 at 3:43 PM, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Mon, Aug 15, 2011 at 1:15 AM, Lucien Montierre estone...@gmail.com wrote: I have an app I'm developing, and I want to make a drawing pad out of a view i've inserted in the XML file that is being used for the

Re: [android-developers] Communication Between Android App and PC

2011-08-16 Thread Kristopher Micinski
You mean ad-hoc (vs. infrastructure) mode? No, at least, there aren't ad-hoc APIs. A bit of googling reveals a problem related to being to even see ad-hoc networks, though to change wifi properties you'd have to have at least a rooted phone. You might also be able to try Bluetooth? Kris On

Re: [android-developers] How to Create Panel Control in Android in Eclipse

2011-08-16 Thread Ratheesh Valamchuzhy
Hi Plse Make the requirement clear Suppose u have a spinner like item1 item2 item3 when u select item1 , u need to dispaly some controls(may be it is another activity) or u want to display the controls in the same screen like pop up plse specify it more clear..

[android-developers] Re: Google Development phones

2011-08-16 Thread Zsolt Vasvari
I wouldn't get the best or fastest device as a development phone as 99% of your users won't have such a device and you may not get the true feel for the performance of your app. On Aug 16, 10:58 am, Mark Ayers markthe...@gmail.com wrote: Wait til September, then get either a Nexus Prime or a

[android-developers] Re: How to show a map (maps are still images of each floor of a building)

2011-08-16 Thread Zsolt Vasvari
ImageView.setImage*(); On Aug 16, 9:22 am, gml gml.check.t...@gmail.com wrote: I am trying to create a prototype that could guide a person to his destination place.     * place is a wide building with several floors.     * i can obtain/retrieve the maps (still images). e.g. current:1F

[android-developers] Re: Widget onReceive Problem

2011-08-16 Thread bb24
I have an image on the widget and a counter that need to show only if the counter is greater than 0, hence I need to override onUpdate() to implement that logic. onReceive() just reacts to 3rd party app installs/updates from Android Market, I do not know why. Besides screwing the look of my

Re: [android-developers] Re: Google Development phones

2011-08-16 Thread Mark Ayers
I would get the one that will be up to date the fastest and the longest, ie the Prime. If you need to test for slower devices, you can always underclock, but you can't go the other way nearly as easily. On Aug 16, 2011 12:10 AM, Zsolt Vasvari zvasv...@gmail.com wrote: I wouldn't get the best or

[android-developers] Attach picture from sdcard in Gmail?

2011-08-16 Thread Duygu Kahraman
Hi All; one of my project , i am using send email WİTHOUT İNTENT code is here(http://stackoverflow.com/questions/2020088/sending-email-in- android-using-javamail-api-without-using-the-default-android-app). I record some picture in sdcard.now i want to get picture and i want to attach to email

Re: [android-developers] emulator issue

2011-08-16 Thread Mark Ayers
Move the SDK installation to a new folder in the root of the hard drive. This happens when there is a space in the path to the sdk. On Aug 13, 2011 10:13 PM, arun kumar arun.kata...@gmail.com wrote: while running the app am getting the error..so how can i solve this Emulator] invalid

Re: [android-developers] Re: How to read *.CHM File ?

2011-08-16 Thread restu nopiandi irawan
saya anggota baru group ini. dapatkah saya mendapatkan informasi sebelumnya? [?] -- restu nopiandi -- 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@googlegroups.com To unsubscribe from

[android-developers] Re: Android 1.5 rounded corners

2011-08-16 Thread Yahor Paulavets
Hello, Hmm.. looks like shape is working: shape xmlns:android=http://schemas.android.com/apk/res/android; stroke android:width=7dp android:color=#FF00 / padding android:left=7dp android:top=7dp android:right=7dp android:bottom=7dp / corners android:radius=10dp /

Re: [android-developers] APK Decompiler

2011-08-16 Thread Kristopher Micinski
As another point of, perhaps sheer curiosity, dexdump gives quite a bit of information (iirc not the bytecode listing for methods, but still quite a bit of useful information.) Kris On Fri, Aug 12, 2011 at 6:14 PM, Mark Ayers markthe...@gmail.com wrote: http://code.google.com/p/dex2jar/

[android-developers] Android 1.5, how to make 1 px border around the group of TextView

2011-08-16 Thread Yahor Paulavets
Hello Everybody, It is my first questions in this group, hope to get the answer :) Issue: draw/make 1px border around the group of TextView in Android 1.5. platform with round corners. I have found solution: http://stackoverflow.com/questions/1683185/android-listview-with-rounded-corners But

[android-developers] Development and Test VM

2011-08-16 Thread udp1024
a VMware workstation VM running Ubuntu 11.04 and pre-configured with Eclipse-Android SDK is available for download at http://docs.google.com/leaf?id=0BzmvLEAvFjoFMGFkMWZiMjQtN2JhYy00M2I5LTk4MWEtMDg1YWEzODU2Yjgwhl=en_US -- You received this message because you are subscribed to the Google

Re: [android-developers] Re: How to read *.CHM File ?

2011-08-16 Thread Yue Zeng
TreKing ,you said something better than nothing. On Sun, Aug 14, 2011 at 3:02 PM, TreKing treking...@gmail.com wrote: On Sun, Aug 14, 2011 at 1:50 AM, mahdi mahdi.farz...@gmail.com wrote: is any library for read chm file in android ? Not in the SDK, which is what this group is for. There

[android-developers] How to launch a Activity without using Intent in Android?

2011-08-16 Thread vanmaple
The normal way to open an Activity is by creating an new Intent, passing it the name of the package and class. My case is a little bit different: I want to load the dex by using DexClassLoader from a apk file on SDCard. Methods and classes from the loaded apk package work fine , but only the

[android-developers] hwo to send command to i2c bus from the user space?

2011-08-16 Thread Yue Zeng
hi my friends, plz do me a favour to show me howto send command to i2c bus from the user space. and example code will be good. Yours Yue Zeng -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: How to close entire app?

2011-08-16 Thread Yahor Paulavets
Hello, I had same issue with closing entire application and found following solution, which works fine for me: http://softteco.blogspot.com/2011/07/how-to-close-activity-and-all-children.html Please let me know if you have any questions. Best regards, Yahor On Sun, Aug 14, 2011 at 11:10 AM,

[android-developers] relative layout - landscape - editText stretches

2011-08-16 Thread TCS
Hi I have been working on my first app in Android and have study various beginners books on the subject. At the moment the first app is purely for my use to make sure that I understand the language before I step into the realms of uploading to the market. My current issue that I have is that

[android-developers] Get views like Hierarchy viewer in the AndroidInstrumentationTest class

2011-08-16 Thread Yahor Paulavets
Hello Everybody, Please advise, is it possible to fetch Views from the activity, like Hierarchy viewer? (In AndroidInstrumentationTest class) Best regards, Yahor -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Android 1.5 rounded corners

2011-08-16 Thread Yahor Paulavets
Hello, Can somebody help me with Android 1.5? Is there are any way to draw rounded corners for LinearLayout which is holding a group of TextViews (like on iPhone). Looks like Android 1.5 doesn't support the shape tag in the drawable. Or may be I did something wrong. Does somebody have

[android-developers] Latency too high with RTSP and mediaPlayer framework

2011-08-16 Thread xoom
Hi, I am an android developer, I am developing an application which can receive live video from the streaming server/IP camera over RTSP/RTP using mediaPlayer framework. Its working well but I am facing problem with the latency, which is around 4-7 minutes in case of QVGA (320x240) H.264 streams

[android-developers] High-performance bitmap drawing from Webview

2011-08-16 Thread yakobom
Hi, I need to take the bitmap of a web page presented in a WebView, and draw it somewhere else. I need to do it in high performance - several times in a second. Anyone has an idea what's the best way of achieving that? I know how to get the bitmap using webview.buildDrawingCache and

[android-developers] Game Developers needed

2011-08-16 Thread saikrishna
Hi everyone I want to start a new game in android.. Those who are interested in game designing can join me.. mail me @ yogasaikris...@gmail.com -- 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] Problem with ListView within a List Item

2011-08-16 Thread Vaishnavi Senthilnathan
Hello All, I am using a ListView as an item in another ListView. The problem is the main listview item is not able to fit to the size of the sub listview. It is just showing the static size. For example I have 10 items in the main listview. and for each item in the main listview i have 5 items in

[android-developers] Re: relative layout - landscape - editText stretches

2011-08-16 Thread Tim Casson-Smith
Please ignore this as I have since posted the same question onto Stackoverflow thanks TCS On Sun, Aug 14, 2011 at 10:37 PM, TCS tim.casson.sm...@gmail.com wrote: Hi I have been working on my first app in Android and have study various beginners books on the subject. At the moment the

Re: [android-developers] Re: How to read *.CHM File ?

2011-08-16 Thread restu nopiandi irawan
I am a new member of this group. can I get information before? -- 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@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Help! How to query a database?

2011-08-16 Thread Ace Zhu
I use the follow code to query a database. But it return a null value. Can you tell me why? Thanks. Cursor cursor = db.query(tableName, new String[]{title}, null, null, null, null, null); Why cursor is null? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: NdefRecord(NdefMessage) extraction from the intent in a NFC design

2011-08-16 Thread Michael Roland
Hallo, first of all, the prefered method of receiving tag detection events is the android.nfc.action.TECH_DISCOVERED intent, the intent android.nfc.action.TAG_DISCOVERED is only used for fall-back tag detection. All three NFC intents (NDEF_DISCOVERED, TECH_DISCOVERED, TAG_DISCOVERED) have three

Re: [android-developers] Re: relative layout - landscape - editText stretches

2011-08-16 Thread Ratheesh Valamchuzhy
? :):) -- 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@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more

[android-developers] IN app biling purchase

2011-08-16 Thread ANKUR GOEL
hi all can anyone give me idea about in app biling purchase . -- 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@googlegroups.com To unsubscribe from this group, send email to

Re: [android-developers] Digest for android-developers@googlegroups.com - 25 Messages in 18 Topics

2011-08-16 Thread Tawisak Ruksuwan
Would you please any body help me weather forecast 2011/8/16, android-developers+nore...@googlegroups.com android-developers+nore...@googlegroups.com: = Today's Topic Summary

[android-developers] Re: Active install percent metric: now it's just ridiculous!

2011-08-16 Thread Doug
On Aug 15, 1:06 am, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Mon, Aug 15, 2011 at 5:02 PM, Mark Ayers markthe...@gmail.com wrote: Methinks at least 5% of your userbase are pirates. They might as well be, but that would not be reflected in the developer console. It tracks

[android-developers] Re: Ongoing notification doesn't work

2011-08-16 Thread András Hatvani
Any ideas? -- 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@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more

[android-developers] How to get android 2.2 capture image path or uri?

2011-08-16 Thread vijayakumar M
Hi Friends, how get capture image path or uri?in android 2.2.. pls help me friends, thanks a lots for advance -- Nobody can go back and start a new beginning, but anyone can start today and make a new ending - Thanks, Regards, νιנαソαkum@r M BloG:http://iamvijayakumar.blogspot.com/ --

[android-developers] Re: Problem with Socket in AsyncTask

2011-08-16 Thread Ben
Thanks for the help!!! It works now(got rid of the timeout setting and creating the socket elsewhere in the class. I also get the right exceptions now, but I have no Idea why I wouldnt get them before(it was an ip address, never a hostname and I never saw unusual traffic in wireshark...), but well

Re: [android-developers] Problem with ListView within a List Item

2011-08-16 Thread Ratheesh Valamchuzhy
Hi... R u checked the android:layout_height property of the two list view , thanks -- 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@googlegroups.com To unsubscribe from this

Re: [android-developers] Re: Character recognition in android?

2011-08-16 Thread Daniel Drozdzewski
On 16 August 2011 07:04, ko5tik kpriblo...@yahoo.com wrote: On Aug 15, 11:01 am, Daniel Drozdzewski daniel.drozdzew...@gmail.com wrote: It is not a trivial task for a computer, let alone a mobile device. You are probably looking into neural networks, and there should be some libraries in

[android-developers] take image from camera and save it to desire location

2011-08-16 Thread Amit Mangal
hi everyone, i am trying to open camera take a pic and save that pic to my folder in sd card . I am able to open camera and take pic but it is not saving on my folder here is the code protected void startCameraActivity() { Button startRec = ((Button) findViewById(R.id.btncamon));

[android-developers] is it possible to lock the phone remotely?

2011-08-16 Thread Hitendrasinh Gohil
Hi, is there any way to lock the phone remotly.i.e by push notification we can invoke some action on phone to lock the phone. -- 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] finish all running activities in the task above a particular activity.

2011-08-16 Thread Riv
How to finish all activities above the current activity in the task.? I have an application that has logout option. When i logout and login again, the last activity that was running before logging out is shown. I want to finish all activities above the Login activity after logging out. -- You

[android-developers] how to draw using canvas in single screen with buttons at bottom of the screen

2011-08-16 Thread Divya
Hello all, I am trying an android application in android 2.2 using eclipse. Am trying to draw using canvas in a single screen with two buttons at the bottom of the screen. I received no errors. But I need to draw an appropriate image by clicking on the appropriate button. If I run my code, it

[android-developers] Re: finish all running activities in the task above a particular activity.

2011-08-16 Thread Carl Lee
Try this: startActivity(new Intent(getApplicationContext(), Login.class).addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)); On Aug 16, 5:32 pm, Riv ronnievie...@gmail.com wrote: How to finish all activities above the current activity in the task.? I have an application that has logout option. When i

[android-developers] Re: How to show a map (maps are still images of each floor of a building)

2011-08-16 Thread gml
Thanks for your response. Would you give me more hints by providing code snippet to do that? On Aug 16, 4:11 pm, Zsolt Vasvari zvasv...@gmail.com wrote: ImageView.setImage*(); On Aug 16, 9:22 am, gml gml.check.t...@gmail.com wrote: I am trying to create a prototype that could guide a person

[android-developers] Re: finish all running activities in the task above a particular activity.

2011-08-16 Thread Riv
Will that work if I have a sequence of like HomeActivity-Activity1- Activity2-LoginActivity. The logging out takes place at Activity2 which launches the LoginActivity. On Aug 16, 2:38 am, Carl Lee ljbha...@gmail.com wrote: Try this: startActivity(new Intent(getApplicationContext(),

[android-developers] Re: finish all running activities in the task above a particular activity.

2011-08-16 Thread Carl Lee
I think you are doing it wrong. You should probably leave your LoginActivity in stack instead of finishing it once user is logged in. The code above will clear all activities above the launching one. For example: A - B - C - D then we do this: startActivity(new Intent(getApplicationContext(),

Re: [android-developers] how to draw using canvas in single screen with buttons at bottom of the screen

2011-08-16 Thread Ratheesh Valamchuzhy
Hi Divya you need the two shapes in same activity ? means the 2 canvas should be in the frame layout? Thanks -- 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@googlegroups.com To

[android-developers] Re: Active install percent metric: now it's just ridiculous!

2011-08-16 Thread Peter Sinnott
On Aug 16, 8:46 am, Doug beafd...@gmail.com wrote: The moral of the story is that market numbers are essentially useless.  The TRENDS of the numbers over time might be useful, but the numbers themselves simply can't be trusted.  I think I started the very first thread here about install %

Re: [android-developers] is it possible to lock the phone remotely?

2011-08-16 Thread Hitendrasinh Gohil
is there anyone to help me out? On Tue, Aug 16, 2011 at 2:58 PM, Hitendrasinh Gohil hitendrasin...@gmail.com wrote: Hi, is there any way to lock the phone remotly.i.e by push notification we can invoke some action on phone to lock the phone. -- You received this message because you are

Re: [android-developers] IN app biling purchase

2011-08-16 Thread TreKing
On Tue, Aug 16, 2011 at 2:35 AM, ANKUR GOEL ankur1...@gmail.com wrote: can anyone give me idea about in app biling purchase . What idea do you need that you can't get from the documentation? -

  1   2   3   >