[android-developers] Re: Where are ldpi version of built-in icons

2010-11-22 Thread Zsolt Vasvari
Thanks, Dianne, for your answers to my question. Cool beans about xhdpi. Will be nice to see Android phones with iPhone 4 dpis for no other reason than to shut the iFans up. On Nov 22, 3:56 pm, Dianne Hackborn wrote: > On Sun, Nov 21, 2010 at 11:30 PM, Tauno Talimaa wrote: > > I don't see xhd

Re: [android-developers] Android Testing

2010-11-22 Thread welly tambunan
have u try this one http://developer.android.com/guide/developing/tools/monkey.html On Tue, Nov 23, 2010 at 12:09 PM, kampy wrote: > hi > > while testing a activity can we move from that activity to the another > activity . i th

[android-developers] Re: AdMob ads only display for a second

2010-11-22 Thread CrazyH
Problem solved! I had padding in the LinearLayout containing the AdView that was taking up space. Once I removed the padding, the ads display fine. Thanks! On Nov 22, 9:50 pm, CrazyH wrote: > Sorry, I am pretty new to android development.  My app has not been > released to the market yet if th

[android-developers] Re: New MiKandi Launch with Support For Paid Apps

2010-11-22 Thread Gene R.
That video is so cool, it almost makes me want to develop an app for your App Store! On Nov 21, 10:32 am, Shane Isbell wrote: > New MiKandi launch, check out the promotional > vid:http://www.youtube.com/watch?v=s3qNsDmRWlo > > If you guys have paid apps, publish them and start making some money.

[android-developers] Re: Raising intent to child of tab activity

2010-11-22 Thread Kumar Bibek
Instead of raising an Intent, just change the selected Tab to the one that contains your activity. The activity lifecycle for that would automatically start. On Nov 23, 10:16 am, Anzi wrote: > Hi, > > How to raise an intent to child of tab activity, so that activity > manager displays respective

[android-developers] Re: using sqlite in native code

2010-11-22 Thread Kumar Bibek
The ndk group would be a better place to ask this. http://groups.google.com/group/android-ndk?lnk= On Nov 22, 8:47 pm, manigault wrote: > Hi all i have a library written in C which implements some complicated > algorithm over two databases and as a result produce new one. I am > trying to import

[android-developers] Re: su: permission denied error

2010-11-22 Thread Kumar Bibek
su is not enabled, ie. root access is disabled on Emulators and consumer devices. You cannot do that, until and unless you root your phone. On Nov 22, 5:10 pm, kamiomar wrote: > By using command prompt access the device shell/terminal. then use the > su command getting permission denied error. Wh

[android-developers] Re: How to embed an external Activity inside one of mine?

2010-11-22 Thread Kumar Bibek
You mean, Activity inside an Activity? No way. At the most, you can setup an Activity inside a ViewGroup, but activity of another application?, that's too complex, have never even thought about it. On Nov 22, 4:14 pm, Francesco Vadicamo wrote: > Hi all, > I need an Activity showing a specified P

[android-developers] Re: Activity state

2010-11-22 Thread Kumar Bibek
YEs, Switch to the Logcat window, and you will see it, else type "adb logcat" in the commant prompt, and it will show you the logs. On Nov 22, 2:00 pm, pedr0 wrote: > Hi at all, > > I want see the state of my activity (Pause Stop Resume etc etc) > without override each methods like this: > > onPa

[android-developers] Re: Softkeyboard not displaying in 2.2 landscape mode

2010-11-22 Thread Kumar Bibek
Because, the emulator thinks that you would be using the Hardware keyboard in landscape mode. If you don't want the hardware keyboard, mention that while creating an AVD. On Nov 22, 10:44 am, Sarwar Erfan wrote: > Hi, > I am facing a strange problem. > My app works fine in 2.1 (emulator + device)

[android-developers] Re: su: permission denied error

2010-11-22 Thread kamiomar
thanks for reply. kindly tell me "unless you root your phone." what does it means? how this possible? Thanks On Nov 23, 11:31 am, Kumar Bibek wrote: > su is not enabled, ie. root access is disabled on Emulators and > consumer devices. You cannot do that, until and unless you root your > phone

[android-developers] android button

2010-11-22 Thread nena joy
Hello, I have an application of list view.Each row in listview contain textview. But I want to add a button on top of the list view.how I can add buttton on top of that listview using java? Please help me. -- You received this message because you are subscribed to the Google Groups "Android De

Re: [android-developers] Re: su: permission denied error

2010-11-22 Thread Kumar Bibek
Rooting means - Breaking your phone to get super user access. Try searching about super user linux, and you will get some hints. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Nov 23, 2010 at 12:16 PM, kamiomar wrote: > thanks for reply. > > kindly tell me "unless you

Re: [android-developers] android button

2010-11-22 Thread Kumar Bibek
You can add a header view to the ListView which will always appear at the top. http://developer.android.com/reference/android/widget/ListView.html#addHeaderView%28android.view.View%29 Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Nov 23, 2010 at 12:16 PM, nena joy wr

[android-developers] How to use Google Places API

2010-11-22 Thread bluepig
I found the following note in The Google Places API (Developer Preview) http://code.google.com/apis/maps/documentation/places/#PlaceDetailsRequests Note: To use the Google Places API you must first request a Maps API client ID and cryptographic key which you must use to sign your request URLs.

[android-developers] WebView hangs/crashes after onResume

2010-11-22 Thread RexM
Hello. I have a problem with my app when it is running on a Samsung Galaxy device. I have not noticed this behaviour on other devices though. The setup is as follows: The app shows a webview with a page that makes repeating ajax requests. When the app is suspended (onPause) the webview loads a bl

[android-developers] App crashes in 1.5 apparently randomly - possible SurfaceView issue?

2010-11-22 Thread muleskinner
Hi, I have an app that's running fine in 1.6 and upwards but is crashing at the same seemingly random point in 1.5. The crash happens when the app is 'idle', ie no state change or user input, just redrawing the screen using a fairly standard 'animation thread' procedure. It always happens after a

[android-developers] Send GPS Location Details to Server

2010-11-22 Thread jagan reddy
Hello All, I am developing a GPS application.. By using the windowsXP OS and eclips IDE I am able to get the Longitude and Latitude of the current Position I want to sent those details to server by using the Http connection and for that sending, I will use gprs connection in my device how to do t

[android-developers] Initial position of scrollbar in ListView

2010-11-22 Thread lou
Hi ! I'm actually working on a ListView, which have two headers. The problem : the scrollbar starts to the first header, so when I'm on the first item, the scrollbar isn't at the top. Any idea? Thanks a lot. -- You received this message because you are subscribed to the Google Groups "Android Dev

[android-developers] How to get current focus view object in Service?

2010-11-22 Thread mos.chris1...@gmail.com
Dear All, I want to get the current focus view in my Service to check the view is a EditText and append some texts in it (for all EditTexts, not only in my application). I found some methods to do this, like Activity.getCurrentFocus() and Windows.getCurrentFocus(). But these methods are used in a

[android-developers] ImageView content provider causing android.process.acore crash

2010-11-22 Thread Robert
I've implemented a content provider for my imageview on a widget. I had to do this because large bitmaps won't work with the normal remoteview.setImageViewBitmap. Now I use remoteview.setImageViewUri(id, "content://com.../image?widget="+id) and it works great except one thing. Every time I redeploy

[android-developers] about refresh rate in framebuffer.cpp

2010-11-22 Thread Li Peng
Hi All, I am working on the eclair framework. I have a question about refresh rate set in framebuffer.cpp in mapFrameBufferLocked, I hard coded the refresh rate to 60*1000, recently I did a test to remove the code, I find it is 1Hz calculated from the formula and then the fps will be about 0.00. A

[android-developers] Expression Evaluator on Android

2010-11-22 Thread Annie
I'm looking for a library that will let me evaluate expressions at runtime. Required: - basic logical expressions (AND, OR, NOT operators) - IF, Then, Goto statement - basic math fuctions and support for custom functions - mechanism to resolve variables Any suggestions? Thanks. -- You received t

[android-developers] Re: Android market (High res) icon

2010-11-22 Thread imsopov
I would dare say you are right Michael. With the launch of Gingerbread imminent it may see the launch of the marketplace website as well that was shown at google I/O On Nov 18, 6:29 am, "Michael A." wrote: > Android Market Website is my guess. > > On Nov 17, 6:19 pm, Olivier Guilyardi wrote: > >

[android-developers] is it faster to load a layout in java or xml

2010-11-22 Thread Eric Murtaugh
ok o my program i prefer to make the layout in java but i was wondering is it more efficient to make it in xml? i dont wanna test both and see whats faster but it feels like when my program call the oncreate (which is where all my layout building code is) takes about 2 secs to load, will loading a

[android-developers] Does system broadcasts any intents during factory reset and system updates?

2010-11-22 Thread sreeni
Hi, Does anyone you know if system broadcasts any intents during following 2 scenarios? 1. Whenever end-user upgrades from one google release (eclair) to newer release (froyo or simply new patches) ? He/she can check for updates via Settings menu or download a new image to SD card and start insta

[android-developers] How keep DDMS from capturing screen on App side

2010-11-22 Thread James Wang
Hi, Do anybody know how to keep DDMS from capturing screen on App side? We are developing an ebook reader and don't want anybody copy our book as images. James -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send em

[android-developers] hi

2010-11-22 Thread shinu
hi dears, how r u? I m the new joiner. My name is shinu. ok. All the best. -- 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 ema

[android-developers] Change setting for Caller ID???

2010-11-22 Thread Brian G
Hi, I'd like to be able to show/hide my phone number 'on the fly' depending on which number is being called. I've worked out I need to listen for android.intent.action.NEW_OUTGOING_CALL and can use EXTRA_PHONE_NUMBER to get the number. OK so far (I think). I then want to check to see if the numb

[android-developers] Do bugs/problems in bluetooth SPP profile of HTC Desire affect Bluetooth Chat sample app?

2010-11-22 Thread Maddy
I am using the Bluetooth Chat sample app from android website. I want to send a long message in the format xxxyyy (xxx-name of the message, yyy-value of the message) and receive it on the other side and display on my phone (HTC Desire). I will parse this message further, extract few things and use

[android-developers] Get review about places

2010-11-22 Thread sickk
Hi, I'm a new Android developer. In my application I should get reviews about places: Is there a way with APIs? In another way? I can't find it. Thank you. -- 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] How keep DDMS from capturing screen on App side

2010-11-22 Thread James Wang
Hi, We are developing e-book reader app and we do not like bad-people capture screen by ddms to pirate our books. We wonder whether there is a way to keep DDMS from capturing screen on app side. Thanks. James -- You received this message because you are subscribed to the Google Groups "Android

[android-developers] Re: Galaxy Tab in debug mode on Win 7 x64

2010-11-22 Thread Doug
I was able to get adb to recognize my Galaxy Tab by turning off USB- debugging on the tablet, and then installing the drivers listed here: http://forum.xda-developers.com/showthread.php?t=728929 and turning USB debugging back on I'm using 32-bit Windows, so I can't say for sure that the 64-bit dri

[android-developers] Re: Geofence application in android

2010-11-22 Thread ip332
As you know, location updates are requested from LocationProvider. If you use NetworkProvider then GPS is not turned on. The rest is in technical details which you should get from the documentation (probably iPhone does it all by itself but in case of Android some technical boring reading is requir

[android-developers] Online Image in SimpleExpandableList

2010-11-22 Thread Leon Moreyn-Android Development
Here is the code I am using. Currently I get and Location to appear but image doesnt. mAdapter = new SimpleExpandableListAdapter( this, groupData, android.R.layout.simple_expandable_list_item_2,

[android-developers] Widget Test cases LRO, LRT, RTL, RLO

2010-11-22 Thread kishore
1.test-suite.xml Tests that LRO direction applies to the name element. To pass, the displayed value of the name element must render as "םפללחק". 2.config.xml http://www.w3.org/ns/widgets";> קחללפם 3.TestReport.html 171 Tests that LRO direction applies to the name e

[android-developers] Re: how to make a hidden notification bar popup

2010-11-22 Thread Eric Murtaugh
any ideas On Nov 15, 9:52 pm, Eric Murtaugh wrote: > so i have my app running in fullscreen however i want to add a button > that when pressed basically makes the notificationbar pop back up and > imedeatly drop down so all notifications are visible, however i also > want it to redisappear when i

Re: [android-developers] android button

2010-11-22 Thread Narendra Bagade
use listview header for that. On Tue, Nov 23, 2010 at 12:16 PM, nena joy wrote: > Hello, > > I have an application of list view.Each row in listview contain textview. > But I want to add a button on top of the list view.how I can add buttton on > top of that listview using java? > Please help

[android-developers] How keep DDMS from capturing screen on App side

2010-11-22 Thread James Wang
Hi, Do anybody know how to keep DDMS from capturing screen on App side? We are developing an ebook reader and don't want anybody copy our book as images. James -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send em

[android-developers] Detecting changes in maps

2010-11-22 Thread Bruno
Hi, how do I detect changes of boundaries and zooms in a map? Is there an event that is called whenever there is a drag or a zoom? I want to update the overlays when this happens with new data requested from a web server. Any ideas are appreciated. Thanks! -- You received this message because y

[android-developers] Security Exception Problem in calling interface methods

2010-11-22 Thread Bluable
Hi, All. I faced a problem that Security Exception has occurred when my application called aidl methods frequently. The application is calling 3~5 times per sec, and 2 thread in it try to call each other application. My source is here. private ServiceConnection mConnection = new ServiceConnection

[android-developers] Re: AT&T HTC ARIA - Can not install APK

2010-11-22 Thread Leon Moreyn-Android Development
You would most likely need to contact ATT. You need to either gain root access or get an unlock code from ATT. On Nov 18, 1:08 pm, Néstor wrote: > I have been looking for 3 days on how to install an APK that I created > with my SDK on my desktop. > I was able to copy the APK from my desktop to my

[android-developers] Scroll View

2010-11-22 Thread rajeev R
package test.Test; import android.app.Activity; import android.app.SearchManager.OnCancelListener; import android.content.Context; import android.content.Intent; import android.graphics.drawable.Drawable; import android.os.Bundle; import android.util.Log; import android.view.View; import android.vi

[android-developers] My Simple ListView app is leaking memory. What am I doing wrong?

2010-11-22 Thread TZ
I created a simple app with a ListView following the ListActivity examples I found on the net. The app has 2 activities with the first having a button to create the second. When i hit the close button on the second activity I would like it to release its memory (or at least allow it to be garbage

[android-developers] Android calls to web service slow? Using .NET web service

2010-11-22 Thread Wipeout
Hey guys, This is my first post to the Android Developers group. I have been working with HTTP communication in the Android SDK and have noticed that calls to a web service through my app are very slow (taking 800+ms on high speed wifi). They take less than 100ms if I call the web service through t

[android-developers] Bad image quality in canvas

2010-11-22 Thread Serzh Butterfly
Bitmap (or drawable) quality is bad when I draw it into canvas. Gradient isn't smooth and lines have a little blur. I want to have a hard lines. What is the problem? I'm testing the app on HTC Desire. All pictures in png format. Thank you. -- You received this message because you are subscribed

Re: [android-developers] Bluetooth No Android

2010-11-22 Thread Jonathan Fenile de Castro
On Thu, Nov 18, 2010 at 8:55 PM, Ray da Costa wrote: > *Pessoal alguem tem alguma dica de como usar **Bluetooth* - Sem > Fios

[android-developers] set Android IP address from my own android application

2010-11-22 Thread Faheem Khatri
I need to set IP adress on Android phone from my own application, any idea? -- 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

[android-developers] Weird behaviour with FileInputStream

2010-11-22 Thread dahwoud
I would like to read raw binary data from a file on sdcard. Nothing fancy ... I'use a FileInputStream a 512 byte[] buffer, API version 8. In the sample file attached, the first character give an a3 hex value, 10100011 binary value, 163 decimal value, and £ character thru hexadecimal editor. But w

[android-developers] Re: Simple Mediaplayer problem

2010-11-22 Thread WeakNet Labs
I have tried threading which proves nothing. I have even tried making a new method that threads the mediaplayer's "start();" method like so: somewhere in the code: MediaPlayer mp = MediaPlayer.create(this, R.raw.good); //mp.release(); playSound(mp); then: pr

[android-developers] Unsuccessful in completing a Nexus One purchase

2010-11-22 Thread Skip
Hi, My organization's purchasing dept. has not been successful in completing the order for a Nexus One phone. There is an error after the credit card information is submitted. They've tried contacting by phone and have left voice messages. FYI, this is the page where the ordering is initiated from

[android-developers] How to get current focus view object in Service?

2010-11-22 Thread Mos
Dear All, I want to get the current focus view in my Service. And to check if the view is a EditText and append some texts in it (for all EditTexts, not only in my application). I found some methods to do this, like Activity.getCurrentFocus() and Windows.getCurrentFocus(). But these methods are us

[android-developers] sqlite db readonly when setting

2010-11-22 Thread raf1hh
Hi All, I have run into a weird issue. I work with a database located on / sdcard/ and for some reason whenever I add to the manifest sqlite opens the db as read only. It gets a bit weirder too. The below code opens the db and checks if the db is readonly, which returns false: db = SQLiteDatabas

[android-developers] am profile command error "Process not debuggable"

2010-11-22 Thread sudeep bhowmick
I am trying to run the profile command using the am option: adb shell am profile start The process has permissions to write to sdcard. Even then, I am getting the following error: java.lang.SecurityException: Process not debuggable: ProcessRecord{xx/xx} This app has multiple activities an

[android-developers] Re: numeric input by default

2010-11-22 Thread SimonB
Hi easy Did you ever found a solution to your problem, i need the samme functionality. Best Regards.. Simon B On 8 Okt., 09:56, easy wrote: > Thank you for reply. > if I use the lines the edit field is not allow to enter the text > symbols after switching from numiric to alfa mode. > > Best Re

[android-developers] [android emulator]

2010-11-22 Thread NGUYEN Sy Quynh
Hi all, At the moment, I would like to know the detail of method tracing on android emulator. My purpose is modify QEMU source code (e.g: 0.12.4) for tracing of function calls of application which ran on QEMU (with ARM Linux), with below information format: Sim_Time PC Call_Type Proce

Re: [android-developers] Comping Android APK from commandline (Win32)

2010-11-22 Thread Koji Ohno
You can do it with ant command. http://developer.android.com/guide/developing/other-ide.html --- Koji Ohno 2010/11/19 MarkG123 : > Hi, I am trying to find a standalone toolset that can compile Android > java project/source code to a finished APK.   Is there such a thing? > I am not having much su

[android-developers] Having too many errors when compiling applications

2010-11-22 Thread JC Dev
OS: WIN7 Tools: Eclipse IDE for Java Developers (Version: Helios Service Release 1) Environment: I followed every single step on the official developer website. I had no problem when playing with the first tutorial Hello Android. In the second tutorial, it tells some Views I can use in Android, I

[android-developers] Simple Mediaplayer problem

2010-11-22 Thread douglas
Hello, I am in the middle of creating an application that plays a happy sound when you get a question right, and a bad sound when you get a question wrong. Needless to say this is a quiz application. Now, if I create 2 objects (MEDIAPLAYER) like so: MediaPlayer mp_e = MediaPlayer.create(this, R.

[android-developers] code for download a file

2010-11-22 Thread jatl007
Hi, Currently I'm developing a web based android application. I tried many codes and non of them were succeed. Can any one post me a code for download file to android phone. thanx. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to

[android-developers] Compiling Lex and Yacc files using Android.mk

2010-11-22 Thread MyDroid
Hi All I am porting an C++ app to Android. This app lex (.l) and Yacc (.y) files. I have created Android.mk with LOCAL_SRC_FILES := sample.l sample.y. But Build system fails to create the lex and yacc output files. As per the Android documentation we can specify the lex and yacc files. The docu

[android-developers] Cursor out of sight in the manually inflated EditText

2010-11-22 Thread Alex
Hello, I have a class, which extends EditText similar way as in the standard NotePad example. But unlike the example my edit view is created dynamically using LayoutInflater. Everything seems to work, except the following issue: when the soft keyboard shows, the edit view layout does not get resi

Re: [android-developers] Online Image in SimpleExpandableList

2010-11-22 Thread Kumar Bibek
Well, for this you will have to write a custom adapter for your list view, since the adapter you are using cannot be directly used to show an image. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Thu, Nov 18, 2010 at 3:50 AM, Leon Moreyn-Android Development < lmor...@earthca

[android-developers] Using Convolution Filter for detecting edges

2010-11-22 Thread ram
Hi I am trying to use Color Matrix Filter for creating a grayscale image and i am trying to use a convolution matrix for detecting edges but i dont find any API as such where i can create and set a 3x3 convolution matrix I am trying to do something like float[] mx = {

[android-developers] Is it possible to using a url image in ImageView

2010-11-22 Thread Leon Moreyn-Android Development
So here is my question. I am trying to use an online thumbnail. I can have looked around and have not found too much data on this. Can some provide me the simplest way to do this. Also If i implement a simpleExpandableListAdapter which is designed as a textView Adapter is there a way to force the i

[android-developers] android 1.5 emulator connection to sever on localmachine LAN

2010-11-22 Thread sumit
having problem trying to connect client on emulator to server running on local machine LAN. suppose my server is running on ip 192.0.0.5 at and emulator on my local machine 192.0.0.50 i have included INTERNET uses-permission in AndroidManifest.xml like this http://schemas.android.com/apk/res/a

[android-developers] Android LBS Apps

2010-11-22 Thread karl_os
Hi all, i'm newbie in developing Android Apps. Currently, i'm going to build an android Location Based Service apps for my undergraduate thesis. I've read some articles about displaying maps in Android but most of them are using Google Maps. Since i'm going to use my own custom map, is there any wa

[android-developers] How to use one application GUI code as jar file from other appliaction?

2010-11-22 Thread Pink
Hi, I have two applications with two different application package names. I want to use first application GUI code in the second one with out rewriting entire code. But my first application using resource import statements in so many places. Even i am able to compile it, i am ge

[android-developers] Re: Android app naming policy

2010-11-22 Thread Leon Moreyn-Android Development
Are you trying to run the same app multiple times? What exactly is the result you are trying to achieve or verify? Leon Moreyn On Nov 19, 12:19 pm, vnv wrote: > Hi, > > I would like to run multiple instances of same application for dev > purpose. > How does app define it's name in the system, th

[android-developers] loste of quality with bitmap rotation

2010-11-22 Thread Dany Poplawec
Hello, My program stacks several images, with a certain angle of rotation. The code works, but the image loses of the quality in spite of the dithering during the rotation (except on right angles 90, 180, 270!). The image is a black circle and there are peaks which appear with the rotation which ar

[android-developers] Will you port android on toshiba g 900

2010-11-22 Thread Sergey Lappo
I think the 520mhz processor, 128 megabytes of RAM and video card GoForce 5500 is a good performance for OS Android -- 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] Usinig Convolution Filter for detecting edges

2010-11-22 Thread ram
H -- 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 options, visit

[android-developers] Re: Android Market - installation never finishes

2010-11-22 Thread Matt Slater
Hi, Most of our apps are large in size and the installation/update get's stuck during downloading/installing stage quite often. I even see the problem on my phone, when I try to install my own app from the market using WiFi connection. The similar thing happens when you try to update more than one

[android-developers] Populate URL Login Fields with User-Preset information

2010-11-22 Thread Steve
Hi everyone. Pardon me as I am an ultra noob working with App Inventor. I know there are similar topics out there, but most of them deal with encrypting login information, etc, of which is no concern to me. Is there a way, within App Inventor, to perform said activity? Specifically, there are thr

[android-developers] Re: AT&T HTC ARIA - Can not install APK

2010-11-22 Thread Leon Moreyn-Android Development
Hm I develop for Sony Ericsson X10 and I still havent been able to get the adb to work for me. H maybe ATT is dropping its restrictions. On Nov 19, 11:18 am, Néstor wrote: > PROBLEM SOLVED!!! > Yes, I am using Eclipse and I tried adb.  I did not try sideload but I > was able to in

[android-developers] HTC Desire HD has eaten all my texts

2010-11-22 Thread cumblech...@googlemail.com
There was No Warning. But I have no entries now. I wouldn't ordinarily mind but there's about 1000 messages lost + My brother passed away about 3 weeks ago just after I got the phone so all the correspondence from that has been lost too!!! WTF -- You received this message because you are

[android-developers] Wanted: Info & samples related to Android Developer Console changes

2010-11-22 Thread Jim
What is a “feature graphic”? Could anyone provide an example? Is it “required” (the console doesn't seem to require it). Also, are "alpha” channels allowed in the high resolution icon? Many icons have transparent backgrounds. If you don't allow alpha channels in PNG icons, what should we set the ba

[android-developers] Android Camera Preview — How to 'freeze' the camera?

2010-11-22 Thread BillyFordson
Hi everyone! I'm currently trying to build an android application to take pictures and I need to freeze the camera preview on a given event (i.e. picture taken) and restart it only after another event. What I want, in other words, is for the view to display whatever the camera sees until the free

[android-developers] Unexpected extra byte occurring in binary logcat entry stream

2010-11-22 Thread Hal
I've been implementing a logcat reader in java which uses the binary output of logcat (-B switch) rather than the text based formats. My code works for many of the entries, but frequently the binary log entries have an extra byte inserted which I can't account for, making the payload the wrong size

[android-developers] To connect a LAN device from Android Emulator......!!

2010-11-22 Thread Nitesh Jain
How to connect an RFID device connected over LAN at some IP & port i.e 192.0.0.4, 4001 with Android Emulator..??? -- 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 un

[android-developers] java.lang.IllegalArgumentException: View not attached to window manager

2010-11-22 Thread PaulJ
Hi there brainiacs, I'd like to ask about how to proper handle progressDialog in Thread, since gettings the error from subject. My code: Thread logThread = new Thread()

[android-developers] Listview similar to call logs of 'contacts' app

2010-11-22 Thread manas
We are trying to create a listview exactly similar to 'call log listview' of 'contact' application (which is a default one). There is one listview item but two clickable controls. 1. Left one - for viewing call log details 2. Right one - for calling that person Any pointer on how to achieve that?

Re: [android-developers] Having too many errors when compiling applications

2010-11-22 Thread Kumar Bibek
You are definitely doing something wrong. Can you tell more about the kind of errors you get? Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Fri, Nov 19, 2010 at 8:15 AM, JC Dev wrote: > OS: WIN7 > Tools: Eclipse IDE for Java Developers (Version: Helios Service > Release 1

RE: [android-developers] Re: Instantiating a layout defined via XML at runtime

2010-11-22 Thread hanika
hi Thanks & Regards, cid:image002.jpg@01CA2AEF.10F60770 Vijay Patel Test Engineer Elitecore Technologies Ltd. 904, Silicon tower, off C.G Road, Ahmedabad-380 006 Gujarat (INDIA), Tel: +91-79-66065606 | HYPERLINK "mailto:vijay.pa...@elitecore.com"vijay.pa...@elitecore.com HYPERLINK "ht

[android-developers] How to edit Calendar in Android

2010-11-22 Thread Majdan
Hi, I am about to write an application with calendar functionality. It would be a waste to write own calendar module in my app, so I would like to use Calendar included with Android. Is there any possibility to edit calendar directly from my application? If not, is there any better way to solve my

[android-developers] Connect a device which is over LAN from Android Emulator...???

2010-11-22 Thread Nitesh Jain
I am having problem to connect any device which is over LAN of my system, with the Android-Emulator. As I create the socket by giving the IP and Port of the LAN-Device my application hangs?? I also included the tag for INTERNET permission in AnderoidMenifest.xml file.. -- You received this messa

[android-developers] It seemed so simple...

2010-11-22 Thread Carl Brown
Get in on the App inventor to easily implement code, and reference/ research the code I needed to learn app develop quickly.. Make a far better phone call recorder by utilizing a stereo audio format, grab the downlink voice and plug into the right channel while gabbing the uplink voice. Fixing th

[android-developers] Waking phone via softkeys

2010-11-22 Thread chrisexv6
I was wondering if there is a way to wake a sleeping phone via softkeys instead of just the power button. Ive debugged and can see that the events arent firing during sleep, but wondered if there is a way to have them listen for input even during sleep (I assume at the cost of battery life) Ive s

[android-developers] I want mms number,sent/received , body and attachment details from MMS db in android… How to do that?

2010-11-22 Thread Mini
I am using "content://mms" Content resolver and getting mms database. How to get number,sent/received, body and attachment details from that? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-devel

[android-developers] How to change color of ListView child items on focus

2010-11-22 Thread Francesco
Hi all. i have a list View in my app (this is the xml layout): http://schemas.android.com/apk/res/android"; android:id="@+id/arrayList" android:layout_width="fill_parent" android:layout_height="fill_parent" android:textFilterEnabled="true" android:scrollbars="vert

[android-developers] computer bluetooth's UUID

2010-11-22 Thread christmas
Hello all, I have some problems about computer bluetooth's UUID, when my phone was paired with my computer bluetooth, i want to connect to my computer bluetooth,it must have computer bluetooth's UUID for below to create an RFCOMM BluetoothSocket: BluetoothDevice.createRfcommSocketToServiceRecor

[android-developers] Re: DBus in android

2010-11-22 Thread siva ram krishna
the above logcat msg was for another project. please see this logcat msg, Starting activity: Intent { action=android.intent.action.MAIN categories={android.intent.category.LAUNCHER} flags=0x1000 comp={com.example.android.simplejni/com.example.android.simplejni.SimpleJNI} } D/AndroidRuntime( 14

[android-developers] GPU

2010-11-22 Thread Nathaniel Warner
How do I force my application to use the current devices GPU if one is available? -- 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

[android-developers] setOnTouchListener

2010-11-22 Thread dmodroid
I've created a view that extends MapActivity called myMapActivity. I need to get the latitude and longitude when a user taps the map. I can capture it by creating an overlay which extends ItemizedOverlay, and overriding onTouchEvent(...). But how do I bubble that up to the MapActivity view? I f

[android-developers] Andriod Trainer(10-15k per day)

2010-11-22 Thread syed sameer
We need an Android trainer; the compensation will be 10-15k per day for a span of 2weeks, (this training can be extended for 4 months). Please send your profile to sameer36...@gmail.com -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To pos

[android-developers] Re: Android Market, specify products in Dollars instead of euros.

2010-11-22 Thread Leon Moreyn-Android Development
So here is my question to this. I have two places I can develop out of. I can develop out of Latvia and out of the USA. So if I was posting a new app in Latvia the currency would be LAT? And if I posted the app here in the USA the currency would be USD? On Nov 19, 11:28 am, sblantipodi wrote: > g

[android-developers] Send video through socket and playing problem

2010-11-22 Thread Charlie
Hi all, I have two simple programmes, one server and one mediaplayer client, both at localhost. The problem is I can send byte/text through the socket, but when I try to send a video file, from the sdcard to the socket, the client side mediaplayer cannot play it. Anyone know how to solve this prob

[android-developers] DBus in android

2010-11-22 Thread sivaramkrishna
hi all, My intention is to let two applications communicate using DBus . i know that DBus is already integrated into android,Dbus binaries DBus send,DBus-monitor,DBus-daemon are already available. i am trying to create an application which will connect to the Dbus and start sending signals and m

[android-developers] View not attached to window manager

2010-11-22 Thread PaulJ
Hello, I'd like to ask about how to proper handle progressDialog in Thread, since getting the error from subject. My code: Thread logThread = new Thread() { String result = new String(); @Override public void run() { Looper.prepare(); try { result = ofsomesomeoperation(); } catch (NoSuchAlgori

[android-developers] Re: How to make a trial version which starts a limited amount of times?

2010-11-22 Thread PaulJ
On Nov 8, 4:01 pm, MobileVisuals wrote: > I want to make a trial version, where the application functionality > works a limited amount of times. The consumer will then be given the > option to buy the complete version on Android market. How can I > implement that? Depends of your functionalities

<    1   2   3   >