[android-developers] Re: How get button event in Notification panel?

2011-06-29 Thread shubh
hi thanks Murphy, so is there any other way to get two events from Notification panel. On Jun 28, 9:33 pm, Mark Murphy mmur...@commonsware.com wrote: On Tue, Jun 28, 2011 at 11:47 AM, shubh shubhampatn...@gmail.com wrote: any one have idea how to get button event from Notification panel.

[android-developers] Re: Install % not updating?

2011-06-29 Thread Zsolt Vasvari
By ranking we are referring to the position the app appears in your category if you are browsing the Market on the phone or on the web site. On Jun 29, 1:02 pm, James W jpbwebs...@gmail.com wrote: What is the ranking that everybody it talking about? I don't see any ranking statistic on the

Re: [android-developers] Re: How get button event in Notification panel?

2011-06-29 Thread Marcin Orlowski
On Jun 29, 2011 8:17 AM, shubh shubhampatn...@gmail.com wrote: hi thanks Murphy, so is there any other way to get two events from Notification panel. not on pre 3.x -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] Files that I write to the sdcard do not show in Windows explorer, for Acer Iconiatab?

2011-06-29 Thread Marcin Orlowski
iconia does not mount as usb drive same way most devices do, so i'd blame their drivers here if oddities occur. -- 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

Re: [android-developers] How to deal with bulk licensing?

2011-06-29 Thread Marcin Orlowski
i'd go with own server (assuming 'bulk' means figures justyfying all the efforts) or with special builf just for them. creating one shareable email is wrong as you got no control on number of installations On Jun 28, 2011 11:58 PM, Justin Anderson magouyaw...@gmail.com wrote: You could do the

[android-developers] how to download and continue the editing a patch on review server

2011-06-29 Thread Zhihong GUO
hi all, I have a patch on review server https://review.source.android.com. I can download it by repo download command. but when I made a change and use git add -A, git commit --amend and repo upload, I got error no branches ready for upload. I check the active branches by git branch: * (no

[android-developers] Re: Install % not updating?

2011-06-29 Thread Michael Schollmeyer
The statement that they received reports from some developers doesn't mean it only affects some developers. It could still affect all but only some of us are complaining. Anyway, the email contains a link and I would encourage everybody to click open the sections and click on report for every

[android-developers] Re: How do I know in the screen EditText is the last one?

2011-06-29 Thread Ali Chousein
The link http://developer.android.com/reference/android/view/View.html explains View::isFocused(). This should help you solve your problem. How exactly it's going to help you, it depends on your situation and you should implement your own solution. -- Ali Chousein Geo-Filtered Assistant

[android-developers] Re: how to make my app as the only one NFC tag handler

2011-06-29 Thread Dominik
simply define your own mime-type and write your private text in your own format, i.e. as new NdefRecord( NdefRecord.TNF_MIME_MEDIA, text/x-yourcompany.getBytes(), new byte[0], payload); and define an intent filter for

[android-developers] Aw: Finishing Activities

2011-06-29 Thread jjoe64
I'm not sure about your problem, but maybe something like that will help you: - start the activity LOGIN from activity HOME with the method startForResult - LOGIN-activity: when back pressed set the result to -1 - HOME-acitivty: check the result and if it's -1 call finish again. -- You

[android-developers] Getting garbage data from network device.

2011-06-29 Thread shubh
Hi friends, I establish connection among network devices using UDP, these devices may be a mob or may be any PC. Now i am sending some data to those device by locate their ip address. When i send some message string from mob to PC it get as it is on PC , but when i get data from PC to mob ..it

[android-developers] CursorAdapter over multiple columns

2011-06-29 Thread Danny S.
Hello, I have a SQLite database with two tables. I want to use table A and link it to the layout views (using a SimpleCursorAdapter), but I need one column from table B to show this in the same layout. How can I realize this using a automatically mapping of the CursorAdapter? Is this possible?

[android-developers] For testing the apk file

2011-06-29 Thread Sudeep Jha
Hi All, When I am putting the apk file on Windows server, testing team is able to download the file and install. But if I am putting the same on AIX server , team is able to download but can't install the application. Everytime we are getting the following error. * **“Parse Error: There is a

[android-developers] Looking for Android language translation partners

2011-06-29 Thread WeiLong
Dear who may concern, I'm looking for a language exchange partners of Android developing who can help on various language translation. This is the application that I developed , “Stop dog barking” https://market.android.com/details?id=com.wuhome.stopDogBarking Although I’m using “Google

[android-developers] Maintaing Socket Connections

2011-06-29 Thread andrew.simpso...@ntlworld.com
Hi Folks, I have an application (written for Windows Mobile) that make a socket connection to a Server. The Server Windows Service detects whether to send data back to the calling client. If data (image) then sends that image. If no image available sends 2 bytes back to signify no image. When

[android-developers] View invalidation clears background

2011-06-29 Thread andrei-dmitriev
Hi All, is there a way to tell the View not to clear the background on repaint? I'm trying to draw a complex content and one of the approaches I'm trying to implement is to draw some piece of content and call invalidate. Unfrotunately the old content is missing after that. So any clues?

[android-developers] Issues maintaining single instance of app

2011-06-29 Thread Goat666
I have an application that can be started through the launcher but also through the browser via a custom URL such as appname://parameters. The root activity is called ActivityA. The launchmode for ActivityA was set to singleTop. I do the following -- 1. Go to the launcher and click the app

[android-developers] 3rd party SMTP servers for an android application

2011-06-29 Thread ankit sablok
Can anybody tell where can we find some 3rd party SMTP servers for an android email application to be syncronized with it. -- 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] Java.net.UnknownHostException using httpGet on Android

2011-06-29 Thread ANKUR GOEL
Just try reloading it sometimes it does not get the host name. you can use the IP instead of that it will work fine. Thanks and Regards:- Ankur Goel On Fri, Jun 24, 2011 at 7:39 PM, My Email connectmyem...@gmail.com wrote: Exception : Java.net.UnknownHostException using httpGet on

Re: [android-developers] Fail to install Apk on device

2011-06-29 Thread ANKUR GOEL
go to platform tools from command prompt type : adb install path of apk file On Tue, Jun 28, 2011 at 6:26 PM, Ankit Kasliwal kasliwalankit2...@gmail.com wrote: Shashidhar i m try to install apk on device on emulator. On Tue, Jun 28, 2011 at 6:20 PM, Shashidhar

[android-developers] Make Rectangle haif width of screen

2011-06-29 Thread ANKUR GOEL
can anybody tell how to make xml file for rectangle of half width of screen size -- 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

Re: [android-developers] How to remove XML child having same name

2011-06-29 Thread ANKUR GOEL
Hi , can you tell the exact problem .. what you want to do .. you must be having some condition to delete that particular node ..or something . or you can parse that node but dont use that value in your application On Tue, Jun 28, 2011 at 10:35 AM, HariRam hariram1...@gmail.com wrote: Hi

[android-developers] two list in a screen

2011-06-29 Thread ANKUR GOEL
Hi all, i want to use two list view in a screen ... can anyone give me idea how to go for it . Thanks Ankur -- 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] Is there any alternative to apps for extending android OS ?

2011-06-29 Thread Ashwini Verma
Hi All, Is it possible to install anything other than android app on android OS ? Thanks Regards Ashwini Verma -- 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

Re: [android-developers] Re: how to make my app as the only one NFC tag handler

2011-06-29 Thread Zhihong GUO
Thank you so much Dominik. so that I need also define the intent filter of my activity: intent-filter action android:name=android.nfc.action.NDEF_DISCOVERED / data android:mimeType=text/x-yourcompany / category

[android-developers] Line thickness

2011-06-29 Thread Brian Hodge
Hey, I've been looking around for a while now and can't really find much of the subject. I've got a sudoku puzzle on the go to try and learn how to use Android. The problem i have is that i want the smaller 3x3 grids to have a thin line separation the squares and a thicker line separating the

Re: [android-developers] ListView is no clickable

2011-06-29 Thread Gabe S
You can't have a focusable object inside a ListView and still set an onItemClickListener, so you can't have a checkbox and an onItemClickListener and have them both work out of the box. Change the xml for the CheckBox to CheckBox android:id=@+id/checkBox

[android-developers] Re: Zoom a bitmap with drawBitmap and rectangles

2011-06-29 Thread Danny.Zubiate
If you are trying to change the size of the rectangle the .left and .top should use the opposite operation from the .right and .bottom. So if you want to increase the size of a rectangle, you should use -= for top and left, and += for right and bottom. /Danny Zubiate Developer Support Engineer

[android-developers] Re: Android sdk insatllation problem?

2011-06-29 Thread Samuel
Hi, I have similar problem. I've installed Java(TM) 6 Update 26 and Java(TM) SE Development Kit 6 Update 26 but I got same error message when installing Android SDK tool installer_r11-windows.exe thanks in advance. Samuel On Jun 27, 4:06 pm, 121914r sona0...@gmail.com wrote: On Jun 26, 10:46 

Re: [android-developers] Re: Android sdk insatllation problem?

2011-06-29 Thread Harsh Vardhan
make sure you have your environment variables at right place.. On Mon, Jun 27, 2011 at 2:36 PM, 121914r sona0...@gmail.com wrote: On Jun 26, 10:46 am, SIVAKUMAR j.sivakumar...@gmail.com wrote: Hi, I had a windows xp.I also had jdk6. I downloaded android insatller r11 for

[android-developers] Building an NDK terminal application.

2011-06-29 Thread J05HYYY
Hello, I have installed the NDK and managed to run ndk-build to compile a terminal program, which was written in C. Trouble is, all I can find is a libmyterminalapp.so. But usually, when I compile on linux I get a binary instead. I want to be able to use the application Terminal Emulator to run

[android-developers] AggregationExceptions and raw contacts

2011-06-29 Thread Ju
Hi, I have created a raw contact synced with my own sync adapter, I add some datas on him and I linked him with an already existing and synced contact (on a google account) using an aggregation exception type KEEP_TOGETHER. All works perfectly, untill I don't edit this aggregated contact in the

Re: [android-developers] Re: latitude and longitude

2011-06-29 Thread Dennys Freire
Another very interesting way of working would be to use LocationManager. When loading LocationListener can specify the shipping time and the distance from the last point of notification. The following example: String provider = LocationManager.GPS_PROVIDER; int t = 5000; // milliseconds int

[android-developers] unknown android module

2011-06-29 Thread huru
Hi all, I'm a newbee and i've just investigating about android SDK emulator. I have a problem when copy an python project to sdcard and run it. When i trying to run that code, there announcing that android module unknowned. -- You received this message because you are subscribed to the Google

[android-developers] App crashes on Samsung devices shortly after startup.

2011-06-29 Thread gvd
I'm getting emails from users (and 1 star comments) complaining that my app crashes shortly after startup. At start-up my app uses runOnFirstFix which will get the location and center/zoom on it (it's uses Google Maps API). What it also does is download an animated GIF image that is used as an

[android-developers] Is it possible to extend the Eclipse Plugin?

2011-06-29 Thread James
Hi all, can anyone tell me if it's possible to extend the Eclipse Plugin by hooking into the editing events? E.g. if I wanted to hook into the editing of nodes in the resource xml files in much the same way as the completion suggestion works? thanks, James -- You received this message because

[android-developers] latitude and long sample code required

2011-06-29 Thread GopalaKrishnan D
dear friends can any one send the sample code for latitude and longitude sample code please -- ~* Regards* *GopalaKrishnan D* -- 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 do I know idle screen?

2011-06-29 Thread chris kang
Hi, all.. I want to display alert dialog when device is idle state.. I just check andrioid launcher, however, it can't cover 3rd party launcher. Do they support it by api or who can solve this issue? -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Connection refused

2011-06-29 Thread felipe aniceto
Hi anybody I'm trying to connect my device with a barcode reader Opticon using bluetooth, however when I set connection using bluetoothsocket.connect, generates exception connection refused. What should I do? best regards -- You received this message because you are subscribed to the Google

[android-developers] Insecure Rfcomm Socket

2011-06-29 Thread D. Sav
Hi, I am trying to establish an insecure connection between my client (Android) and server (PC) using Bluetooth by using device.createInsecureRfcommSocketToServiceRecord But given that it was included starting with Android API Level 10 (or Android 2.3), it wouldnt work with Android 2.2 Is

[android-developers] force close loop due to root all 2 sd

2011-06-29 Thread jacko
Hi please help i have a zte v9 2.2 optus my tab and done the stupid thing of rooting parts of system to sd thinking i had a permanent root but tried getting photos off at a friends my tab reset losing its root which made root all to sd not work as phone needs to be rooted now once booted brings

[android-developers] ] emulator: could not find virtual device named 'my_avd'

2011-06-29 Thread david
Hello All, building 'hello world' on Windows XP, installer_r11-windows.exe (latest) , helios everything fine...until [2011-06-27 07:45:47 - HelloWorld14] Automatic Target Mode: Preferred AVD 'my_avd' is not available. Launching new emulator. [2011-06-27 07:45:47 - HelloWorld14] Launching a new

[android-developers] Localization of launcher image not working in OS 2.2.2

2011-06-29 Thread Chris
While testing our Android app it is observed that on the devices that have Android OS 2.2.2 the icons do not change the language even after the language setting is changed. This same bundle works on OS 2.1 and OS 2.3. We have tested this on the Motorola Droid 2 which has OS 2.2.2 and also on the

[android-developers] calendar

2011-06-29 Thread piyush
Hi, I have to use a month view and day view calender binded with job shifts. I am new to android so not much aware of android sdk to build a new component for this. Could anyone please let me know how to do this or where can I get the source code for this. Thanks, Piyush -- You received this

[android-developers] Trying to resolve application crash

2011-06-29 Thread James Wright
Hey all, I've been working on my first app (card game) and almost everything works fine when testing on my Samsung Epic 4G except for this one thing, the following scenario which I can consistently reproduce: Launch Game Click the home button and launch ~10 other applications until the game is

Re: [android-developers] calendar

2011-06-29 Thread νιנαソkum
http://iamvijayakumar.blogspot.com/2011/06/android-simple-calender-in-gridview.html check this blog On Tue, Jun 28, 2011 at 3:57 PM, piyush er.piyushverm...@gmail.com wrote: Hi, I have to use a month view and day view calender binded with job shifts. I am new to android so not much aware of

[android-developers] Re: Android LifeCycle and Singleton Instances

2011-06-29 Thread Nemanja Nedic
Regarding the networking on Android, last year on Google IO there was a session about developing REST clients on Android (http:// www.google.com/events/io/2010/sessions/developing-RESTful-android-apps.html). In the first pattern described there is a Service Helper component that acts as a thin

[android-developers] Documentation error on Activity class

2011-06-29 Thread Mathieu Boniface
Hi, I reveal an error on the official documentation of the Activity class right here : http://developer.android.com/reference/android/app/Activity.html#showDialog(int, android.os.Bundle) At the end of the description, you can see : onCreateDialog(int, Bundle) returns false. It would be

[android-developers] Noob Questions (Probably Embarressing)

2011-06-29 Thread MissNoob
I'm a complete noob, so I apologise in advance if my questions reveal my total ignorance of what I am doing. :-) I am trying to build apps to point to each of my websites. Just like appsgeyser.com, but with no advert, and with my certificate. I have spent all day on it, but have finally managed

[android-developers] Re: No Netbeans support?

2011-06-29 Thread Neil
Built HelloWorld using NetBeans and Android in about 10 mins, nice offering http://bit.ly/jS9DpO -- 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] to take a whole log

2011-06-29 Thread mikan
I would like to know how to take a whole log , not one application but all application. Could you tell me? -- 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] 1st problem

2011-06-29 Thread Lwe
when i run eclipse they give me error adb]'adb version' failed! Failed to parse the output of 'adb version' what is the solution -- 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] PinyIn IME

2011-06-29 Thread PPCS
Hello All, When I enable soft keyboard in froyo, we get PinyIn IME as the default IME, right? Is there any way in PinyIn IME we can select the key on the display using arrow keys (by highlighting the key)? Thanks, PPCS -- You received this message because you are subscribed to the Google

[android-developers] MediaStore

2011-06-29 Thread Yang Zhang
What exactly is the MediaStore? How do users interact with the MediaStore? It's woefully under-documented. My most nagging question at the moment is: what are its playlists and how are they used? Do these correspond to playlists in the Music app? Some background: I have a simple TTS app that

[android-developers] replicating SmsManager.sendDataMessage on CDMA phones

2011-06-29 Thread Ben Fleischhacker
I'm having trouble with the sendDataMessage method in SmsManager (http://developer.android.com/reference/android/telephony/ SmsManager.html). Sending a data sms between 2 gsm emulator's appears to at least partially work, but I get a NullPointerException when using the same method on a verizon

[android-developers] code to run/install apk file

2011-06-29 Thread Paulsen J Siahaan
Hi all, somebody know how can i install apk file from sdcard programmatically and also run that application ?? let me explain, first i download the apk file, and placed in data/data/package/sdcard. now i want to install and run that application as soon as after download completed.. somebody can

[android-developers] TextAppearance.StatusBar.EventContent

2011-06-29 Thread Krish
Hi, I am trying to use the style @android:style/ TextAppearance.StatusBar.EventContent to have default color on the notification. I am using Android SDK 2.3 (API Level 9), but I am getting error res not found. Whatever I read it says the style is supported from API level 9. Here is the sample

[android-developers] problem

2011-06-29 Thread Lwe
adb.exe illegal system dll reclocation the system dll user32.dll was reclocated in memory. the application will not run properly.the reclocation occurred because the dll c:\windows\system32\shell32.dll occupied an address range reserved for windows system dlls.the vendor supplying the dll

[android-developers] Video information for Android

2011-06-29 Thread pleplepl...@hotmail.com
Hi I am a new Android developer and am still learning how to use the software. I had an idea for a game but wasn't too sure if this was possile. Can a software be created using the android to show TV shows while adding effects or altering the video? Not referring to videos rom the Internet side

[android-developers] Webview - Resize items

2011-06-29 Thread Rafael Decker
Hi, On my extended webview class i have: @Override public boolean onTouchEvent(MotionEvent ev) { boolean consumed = super.onTouchEvent(ev); if (isClickable()) if (ev.getAction() == MotionEvent.ACTION_DOWN) { this.loadUrl(javascript:

[android-developers] need to search photos contains in phone

2011-06-29 Thread sri ram
Hi Guys, This is my first post. is it possible to search all songs that we have in our phones and memory sticks. we are knew that it is simple to view contacts from our using the Intent of the activity. i have tried with some codings .. but i have no luck in that..can u give suggestions if you

[android-developers] BOOT_COMPLETED Action is not received in TestingSettingsBroadcastReceiver

2011-06-29 Thread Rahul Garg
Hi, I am trying to add BOOT_COMPLETED Action in the TestingSettingsBroadcastReceiver file. But the problem is I am not able to receive any broadcast. I have added the permission as well as the action in the Manifest file. Any one any idea about it. Regards Rahul Garg -- You received this

[android-developers] Create photo collage app.

2011-06-29 Thread Satya728
Hi, I am newbie on android. I want to create photo collage app. please reply me some idea how to create this? Thanks Satya -- 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 Developers] Virtual Device with 1024 mb ram not responding

2011-06-29 Thread Sergio Michels
Hi all, I created one virtual device with 1024 mb of ram. The virtual device not start (not respond). If I run an device with 256 (default), then it runs, but sooo slow. How can I improve the performance of my virtual device? I have 6GB of ram on my computer, so it don't is a problem. Regards,

[android-developers] Accelerometer Senor

2011-06-29 Thread Sati
Hi, I am trying to read accelerometer sensor values on Samsung Galaxy Fit mobile. With reference to the android documentation, sensor has to output 9.81m/s2 when phone lies flat on table. But, I am getting values passed on from the sensor even in idle state. 1. Can i know the reason for it or is

[android-developers] receiving Google Contacts update notifications

2011-06-29 Thread Shaun
I'm assuming that the Google Contacts syncadapter is somehow tied into a C2DM listener so that it knows when an update has occurred on the server and it needs to sync. Am I correct? (ie, someone updates a contact via the website, Google sends an update notification message from their servers to

[android-developers] Intercept the screen-off key press

2011-06-29 Thread CloudStrife91
Hi everyone, i'd like to know if there is a method to prevent the screen from turning off and the phone to lock when i press the screen off button and, instead, launch a new activity, without touching the kernel itself. Many thx! -- You received this message because you are subscribed to the

[android-developers] Vedio Problem

2011-06-29 Thread suresh sharma
i m facing the Problem While trying to access Vedio in Smaller Chuncks -- 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] Vedio Chunks is not acessible

2011-06-29 Thread suresh sharma
Thanks for the Previous satisfactory answers.Now i m working in Android division challenge is now to play vedio file from sdcard.it sounds easy.But Obstacle is File is 300 MB (like 1 GB). Android sdcard accessing doesn't support 300 MB. So I decided to derive the Vedio in Smaller Chunks. My code

Re: [android-developers] Camera preview crashes without SURFACE_TYPE_PUSH_BUFFERS

2011-06-29 Thread Latcho
Person: I want to do A). Am i doing something wrong? Mark: You are trying to do A). Please don't do that. On 6/27/2011 1:01 PM, Mark Murphy wrote: On Sat, Jun 25, 2011 at 4:16 AM, alexandros mouzakidis greatalexand...@gmail.com wrote: HI, i want to create a camera preview that is

[android-developers] feeding 1spinner to the other

2011-06-29 Thread debai
I am trying to feed onclick item of one spinner to another spinner Here is the complete code package com.indusnet; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.AdapterView; import

[android-developers] Android with Restful WCF Service

2011-06-29 Thread Rajesh
Hi all, I've done some coding for accessing a Restful WCF Service through android,, It is throwing the following error.. Message : No command output when running: 'am start -n com.beacon.android/ com.beacon.android.AndroidBeaconActivity -a android.intent.action.MAIN -c

[android-developers] Unable to invoke ResultReceiver from an intent Service

2011-06-29 Thread Shailja
Hi, I am developing an android application in which I have a background service that implements Generic Result Receiver. The service calls an Intent Service to fetch some details about each event. Now, the problem which I am facing is when I start the intentservice , the onreceive result of

[android-developers] Survey about frameworks for mobile app development

2011-06-29 Thread tde.sur...@yahoo.de
Dear developers, My name is Thomas and I am a student at the Karlsruher Institut für Technologie in Germany. I am writing a term paper about frameworks for app developement and I have created a short survey. I would like to invite you to participate in this survey about frameworks for app

[android-developers] Action Bar Tabs Fragments

2011-06-29 Thread Yip
Hi, I'm developing a tablet app on 3.1. Is it possible to implement a design in such a way that each ActionBar Tab has different Fragments? For example, I have 4 ActionBar tabs. My first tab has 3 fragments, the second one has 2 fragments and the remaining tabs have 1 fragment each. I'm not

[android-developers] How to read/write launcher.db?

2011-06-29 Thread Tonmoy
Hi, I need to write a program which takes backup of android home screen. And then restore it. How is it possible? Is this I need to read/write from launcher.db stored in Launcher application? If so, how can I do it? Regards Tonmoy -- You received this message because you are subscribed to the

[android-developers] Survey about frameworks for app development

2011-06-29 Thread tde.sur...@yahoo.de
Dear developers, My name is Thomas and I am a student at the Karlsruher Institut für Technologie in Germany. I am writing a term paper about frameworks for app developement and I have created a short survey. I would like to invite you to participate in this survey about frameworks for app

[android-developers] Re: Best option to get low latency streaming over RTSP

2011-06-29 Thread michal
Hi, If you decided to develop your own (low latency) player, you might want to check this page: http://www.ciufek.net . Perhaps it could get you started somehow. Cheers On Jun 17, 7:52 am, pragnesh imprg...@gmail.com wrote: Hi All, I am a streaming and multimedia developer, I am currently

Re: [android-developers] how to use .so

2011-06-29 Thread Vinod Pache
ask him the java file where he has written the Loadlibrary(...) function. then make object of that class file and call the appropriate function from the .so file. regards Vinodkumar On Mon, Jun 27, 2011 at 12:19 PM, TreKing treking...@gmail.com wrote: On Mon, Jun 27, 2011 at 1:22 AM, cindy

Re: [android-developers] Re: Is it possible to create pdf files in android using 3rd party library

2011-06-29 Thread Vinod Pache
try this http://java-source.net/open-source/pdf-libraries On Tue, Jun 28, 2011 at 6:39 PM, nothing nsantos.pess...@gmail.com wrote: Hi, I think that the iText library doesn't work in android. Besides, the performance probably would be unsatisfactory. Probably the best solution would be

[android-developers] Google license verification

2011-06-29 Thread Tim in Boulder
I've got the LVL code up and running in my app, and with my small number of purchases I've already seen what appears to be one false response from the Google licensing server. I was under the impression that I'd just need to cover cases where the server request would FAIL several times (servers

[android-developers] Unable to draw route between two locations

2011-06-29 Thread Md.Fazla Rabbi OPU
Hi all, I am working with google map for some days. I have developed a small project through which i can track my location and five nearest ATM booths in a list. When i click on a booth then it shows two markers in google map: one is my location and the other is a ATM booth. Now i want to draw the

[android-developers] Make photo collage

2011-06-29 Thread Satya728
I needed help how to create photo collage in android. Thanks Satya -- 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] how to call a function after certain time limit set in the activity ie., i want to know how it is implemented and its related apis

2011-06-29 Thread sarap karthik.....!!
how to call a function after certain time limit set in the activity ie., i want to know how it is implemented and its related apis -- 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] Is it possible to fix the orientation of a particular view in Honeycomb?

2011-06-29 Thread Neil
Hi guys, In my activity I have a SurfaceView which I want to lock the orientation when rotating the device. But I still want other views in the activity to be rotated with the device which means I can not use Activity.setRequestedOrientation to lock the orientation. So is there a way to achieve

Re: [android-developers] Noob Questions (Probably Embarressing)

2011-06-29 Thread Raghav Sood
I doubt anyone will give you the code for free. As for the apk question when you compile the app to run it in the emulator an apk is generated automatically. You can find it in the /bin directory of your project. You can transfer it to your device and install it like any normal app. To sign your

Re: [android-developers] how to call a function after certain time limit set in the activity ie., i want to know how it is implemented and its related apis

2011-06-29 Thread Kumar Bibek
Setup a timer thread. A simple thread which sleeps for certain amount of time, and then call your method. *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com http://www.kbeanie.com* On Mon, Jun 27, 2011 at 12:29 PM, sarap karthik.!! sarap.kart...@gmail.com wrote: how to

Re: [android-developers] [Android Developers] Virtual Device with 1024 mb ram not responding

2011-06-29 Thread Raghav Sood
Which android version are you emulating? What CPU do you have? Android 3.0 and 3.1 are extremely slow on basically any machine. For the others I use 512mb RAM and they work fine. Your CPU is also important. On Wed, Jun 29, 2011 at 6:20 AM, Sergio Michels sergiomiche...@gmail.comwrote: Hi all,

Re: [android-developers] Noob Questions (Probably Embarressing)

2011-06-29 Thread Marcin Orlowski
On Mon, Jun 27, 2011 at 11:12 PM, MissNoob madam.ge...@gmail.com wrote: I'm a complete noob, so I apologise in advance if my questions reveal my total ignorance of what I am doing. :-) You are asking so basic and elementary question that imho right answer for you is: hire someone who knows

Re: [android-developers] How to read/write launcher.db?

2011-06-29 Thread Marcin Orlowski
You can't unless launcher offers ContentProvied for this (most likely it does not). Or be rooted for that. Regards, Marcin Orlowski *Tray Agenda http://bit.ly/trayagenda* - keep you daily schedule handy... *Date In Tray* http://bit.ly/dateintraypro - current date at glance... WebnetMobile on

[android-developers] How to change application not STOPPED in 3.1

2011-06-29 Thread James Wang
Android 3.1 introduced two new Intent flag FLAG_EXCLUDE_STOPPED_PACKAGESFLAG_INCLUDE_STOPPED_PACKAGES. If user stopped my app by settings app and my app was expected to be started by BOOT_COMPLETED Intent. BOOM! My app will not start untill user click my app's shortcut. So if my app include only

[android-developers] Re: how to call a function after certain time limit set in the activity ie., i want to know how it is implemented and its related apis

2011-06-29 Thread skink
On Jun 29, 11:18 am, Kumar Bibek coomar@gmail.com wrote: Setup a timer thread. A simple thread which sleeps for certain amount of time, and then call your method. *Thanks and Regards, Kumar Bibek* *http://techdroid.kbeanie.comhttp://www.kbeanie.com* On Mon, Jun 27, 2011 at 12:29 PM,

Re: [android-developers] App crashes on Samsung devices shortly after startup.

2011-06-29 Thread Raghav Sood
Your error clearly states that your app is running out of memory. I don't know why this is happening only on Samsung devices but maybe you could modify your app to use less memory to prevent the error. On Wed, Jun 29, 2011 at 2:30 AM, gvd g.h.vando...@gmail.com wrote: I'm getting emails from

[android-developers] Re: Make Rectangle haif width of screen

2011-06-29 Thread sparky
Put it in a layout together with some other components, set android:layout_weight, and let the layout manager sort it out. -- 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: How to deal with bulk licensing?

2011-06-29 Thread sparky
Have you thought about using the Android License Verification Library? http://developer.android.com/guide/publishing/licensing.html -- 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] Is it possible to fix the orientation of a particular view in Honeycomb?

2011-06-29 Thread Marcin Orlowski
On 28 June 2011 12:10, Neil wan...@gmail.com wrote: Hi guys, In my activity I have a SurfaceView which I want to lock the orientation when rotating the device. But I still want other views in the activity to be rotated with the device which means I can not use

Re: [android-developers] Line thickness

2011-06-29 Thread Pepijn Van Eeckhoudt
Paint#setStrokeWidth On 28/06/2011 20:23, Brian Hodge wrote: Hey, I've been looking around for a while now and can't really find much of the subject. I've got a sudoku puzzle on the go to try and learn how to use Android. The problem i have is that i want the smaller 3x3 grids to have a thin

Re: [android-developers] How to change application not STOPPED in 3.1

2011-06-29 Thread Marcin Orlowski
On 29 June 2011 11:23, James Wang jameswangc...@gmail.com wrote: So if my app include only services and there is no shortcut for it in launcher, user have no way to let it back, right? How can I to resolve such problem? Add one? -- You received this message because you are subscribed to

[android-developers] Re: code to run/install apk file

2011-06-29 Thread huru
You can use adb install command. Ex: C:\android\android-sdk\platform-tools\adb install /sdcard/ your_file_name.apk (ex: adnroid.apk) You also can download your file on PC. And then you use this code to install: C:\android\android-sdk\platform-tools\adb install C:\android.apk On 28 Tháng Sáu,

[android-developers] How to use startActivityForResult() from a singleInstance task.

2011-06-29 Thread Amit
Hi All, Is there any way to start a new activity using startActivityForResult(..) from an activity whose launch mode is singleInstance in the manifest file. As I don't want to change the launch mode, can we perform this task so that onActivityResult() gets called at right time. thanks in advance

  1   2   3   >