[android-developers] Android

2012-05-21 Thread Milap Gajjar
How can hide my application in android mobile?, but application running background. -- 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, sen

[android-developers] Re: Licensing response with release APK

2012-05-21 Thread Oded
My understanding is that if you are logged in with your developer account on your device then it will always show whatever the test license status is from the server. If not and it's a draft (not yet published) app, then it will always return LICENSED. See http://developer.android.com/guide/marke

[android-developers] Bitmap rotation performance

2012-05-21 Thread Mauro
Hi you all, the question is simple: how to accomplish the bitmap rotation for big size bitmap without blocking the user for a lot of seconds? For example in the default android gallery you can rotate an image in a very fast manner. I thought to apply the matrix rotation on the ImageView (which can

[android-developers] Problem in integrating Android application with Postgresql database

2012-05-21 Thread ashish nayal
I am developing a Android application with target Android 2.1. In this application I try to integrate my application with Postgresql database using jdbc driver(Drivers with which I have tested the application are: postgresql-9.0-801.jdbc4.jar postgresql-9.0-801.jdbc3.jar postgresql-8.3-606.jdbc4

[android-developers] Access to VideoView on WebView in fullscreen

2012-05-21 Thread durzy
Hi, I want to access to video on html5 page when it goes to fullscreen. Unfortunately I can cast it only to SurfaceView (there is a HTML5VideoFullScreen object). Is it possible to cast it to VideoView somehow? Regards, Mariusz -- You received this message because you are subscribed to the Goog

[android-developers] Re: How to Intercept Post request in Android WebView?

2012-05-21 Thread Leif Jakob
Hi, I've found an ugly solution working for android 2.3 (implementing an android.net.http.RequestQueue and gluing it into the framework with reflection) but it doesn't work on ICS anymore... If your ICS is compiled with CHROME_NETWORK_STACK you are out of look. The idea with a proxy is ok, but

[android-developers] Android custom Event to javascript EventListener

2012-05-21 Thread smie
Is it possible to create in Android event, witch send data to javascript EventListener in WebView? For example: In background, I start thread what search updates on server. When updates was found I send event to update data on user page(in WebView). And I dont want reload view. Thanks for help!

[android-developers] Re: How to detect Mobile Acess Point network mode?

2012-05-21 Thread Михаил Пашнёв
WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE); Method[] wmMethods = wifi.getClass().getDeclaredMethods(); for(Method method: wmMethods){ if(method.getName().equals("isWifiApEnabled")) { try { method.invoke(wifi); } catch (IllegalArgumentException e) { e.printStackTr

[android-developers] [NFCSTATUS_PENDING] in packages/apps/Nfc/jni layer of Android stack

2012-05-21 Thread Nishitha Adaranthe
We were facing a problem during firmare download part of the jni code in com_android_nfc_NativeNfcManager.cpp file. So we commented the code which was responsible for firmware download. Now phLibNfc_Mgt_Initialize() function in same file retuned nfcstatus as [NFCSTATUS_PENDING]. We dont know wer

[android-developers] Re: How to convert .swf to .apk ?

2012-05-21 Thread Robert
confused, Your link cannot be found by my browser (404 not found). Could you check it, please? -- 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 unsubscrib

Re: [android-developers] Publishing free and paid versions of the same app

2012-05-21 Thread Balint Farago
Your pro version must have a different package name from the free one. This means, when the users download the pro version, they will also have the free version installed on their phone. This is how I usually do it and have not found other ways yet, i guess this is the general solution. 2012/5/17

Re: [android-developers] noob developer, application keeps restarting

2012-05-21 Thread Raghav Sood
When it is in the background, Android kills your application when it needs more resources. One way to keep your data would be to write it to SharedPreferences in onPause(), and read it from the same in onResume(). http://developer.android.com/reference/android/content/SharedPreferences.html Thank

Re: [android-developers] Samsung Galaxy Gio Stuck at Startup

2012-05-21 Thread Raghav Sood
This list is for developing applications with the Android SDK. For help with your phone, try finding a phone specific forum. Thanks On Thu, May 17, 2012 at 11:56 PM, andrew smart wrote: > Hi, > > I got galaxy gio, which has Android 2.3.3, today at a worse moment of my > life, I update my gio fro

Re: [android-developers] Regarding maps

2012-05-21 Thread sourabh sahu
I know ...I browse a lot for some example..but no help..thats why I asked you to put some example. Sourabh On Mon, May 21, 2012 at 12:12 PM, TreKing wrote: > On Mon, May 21, 2012 at 1:04 AM, sourabh sahu wrote: > >> Please can you post some sort of example or weblinks... > > > I've named the ex

Re: [android-developers] Publishing free and paid versions of the same app

2012-05-21 Thread Raghav Sood
Move all of the common code to a library project. You will need two different package names to upload the apps still, but it will save you from having two different projects altogether. Thanks On Mon, May 21, 2012 at 12:37 PM, Balint Farago wrote: > Your pro version must have a different package

[android-developers] camera preview formats and sizes

2012-05-21 Thread Marco
hello, i would need to process camera preview frames of high quality in android. Is there a list of devices which are capable of using the ImageFormat.RGB_565 camera preview format? i would need to know supported preview formats and supported preview size before buying the device... (i can't use t

[android-developers] Re: Banned For title Of App(hungry Hippo's)

2012-05-21 Thread kj
The best option for your app would be to stop using a hippo character and switch to a different animal, like pigs. Right now your app has text and characters that are similar to the hungry hippo's board game and no matter where you post it will probably get DCMA'd. -- You received this message be

[android-developers] Performance issues on android

2012-05-21 Thread Henry
Hi - I have an android app that is continuing to have loading and speed issues, regardless of the numbers of users. Does anyone have experience is performance optimization on android that might be able to help? Please let me know Thanks, Henry -- You received this message because you are subs

[android-developers] Re: ICS don't give you a real multitasking.

2012-05-21 Thread Mek Rama
Yes, Fragments helps a lot. I did multi tasking using activities, Asyctask, hidden layouts in a Relative lout,etc. But Fragments is the best solution, I believe.Not sure about compatible jars of fragments that works in lower versions, but heard that it works equally good. I think every knows

[android-developers] Need Help Im beginner

2012-05-21 Thread Rahul Kapoor
i want to put advertisement on my android application. i use admob sdk in my library. but whenever i try to put import com.admob . it became red, pls help me to fix that -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group,

[android-developers] Re: Listview with multiple layout

2012-05-21 Thread Mek Rama
Layout: Two layout xml files: 1)one layout for listview 2)another layout for list items. use two textview widget and arrange it one below other. Layout: 1)linear layout 2)relative layout or use combination of relative and linear application code: use i)SimpleCursorAdapter ii)custom adapte

[android-developers] Deleting from item from listview using OnItemLongClickListener

2012-05-21 Thread Tadas Martinkus
Hello, In code I have listview which is saving in Arraylist. Everything with item adding work, but i want to delete it using long click listener. I use some tutorials but it doesn't work - when i run program it get froce close. i use this source code. listView_monday = (ListVie

[android-developers] Re: Accessing Front and Back Camera at the same time

2012-05-21 Thread Mohit Ramani
>From what i know is that it is not possible. You are right the hardware is different for both but the software that accesses the camera is same and it can only use one camera at a time. On Monday, May 21, 2012 9:05:58 AM UTC+5:30, perumal316 wrote: > > Hi All, > > I want to access the front and

[android-developers] call an Activity by intend and callbyvalue

2012-05-21 Thread superpsycho
Hi, i´ll want to call the NextActivity, give an integer to its creation and identify whats to create by the given int. My existing code is like: 1. Intent dosth = new Intent(ThisActivity.this, NextActivity.class); 2. startActivity(dosth); what i simply want to have is: 1. Intent dosth = new Inte

[android-developers] get the color pallete of image

2012-05-21 Thread Ignatius Ranu
how to get color pallete of image in 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 unsubscribe from this group, send email to android-developers+unsubscr

[android-developers] How to Show the full image on clicking the Discard button using the crop app?

2012-05-21 Thread potupaul
I was working with these code which i Googled and found here http://www.londatiga.net/featured-articles/how-to-select-and-crop-image-on-android/ The built in crop app has these discard button which completely cancels the activity bt i want to capture the original selected image and sen

[android-developers] Bluetooth

2012-05-21 Thread Samuel Caetano
Hello guys, i've been looking for some docs about bluetooth in android Can you guy show me some docs about it? 'cause i've been trying to use the google documents explanations about bluetooth, but that was a full waste of time -- You received this message because you are subscribed to the Goo

[android-developers] Content Providers

2012-05-21 Thread Mohit Ramani
Hi All, I am developing an application which will have to catch notifications for Incoming SMS, Outgoing SMS, Missed Calls, Incoming & Outgoing E-mails. Now I have found a way to get all these notifications except for the e-mail which seems impossible at the moment, but my question is will thes

Re: [android-developers] How to check which button is clicked

2012-05-21 Thread ravi saini
hii just implement your class activity from onclickListener and implement its method onclick and in that method you can use switch to get which button is pressed like switch (v.getId()) { case R.id.im1: { button1.setImageResource(R.drawable.p1o); break

Re: [android-developers] Can I get user's city without using GPS?

2012-05-21 Thread SHIVENDRA SONKER
How to develope android application? Plz give the answerwith coding. On 15 May 2012 17:33, "Perry168" wrote: > Hi all, > ** > > I hope to get user's country and city without using GPS. Basically, I know > how to get user's country. I searched some post from the web. It can use > LocationM

[android-developers] android live vedio streaming project

2012-05-21 Thread SHEYAM CONSTANTINE
i am in a project of live viedo streaming from android device but the time of viedio uploaded doesnt matches it shows 12hrs later helpme -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developer

[android-developers] fatelexception main,nullpointer exception

2012-05-21 Thread radha ch
hi am doing one app .here i have 50 buttons when i clcik each button that time i need to display some images in gallery.its working fine.but at the same time i need to play that image related sounds also that time i am getting error. same app i run emulator its working fine. but in samsung galax

[android-developers] Implementing OnGestureListener on SurfaceView

2012-05-21 Thread Surej Anwar
Hi Folks, I wanted to check on android gestures . I did implement a SurfaceView derived class which implements OnGestureListener. However, I was not able to get any logs w.r.t gesture methods. Here's the code . Am I missing out something here ? package com.srj.mygame; import android.app.Activit

[android-developers] TimePicker 24hours

2012-05-21 Thread Tadas Martinkus
Hello, How to do 24hours time picker becouse now it 12hours with pm and am. -- 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] Help with removing item from listview using long click listener

2012-05-21 Thread Tadas Martinkus
Hello, I need to delete item from list view. i serch in google for examples but no one work. Here is a picuture of my project Everything with adding work. But i need to delete one of them

[android-developers] Android WebDriver does not support JS execution

2012-05-21 Thread 伟 李
I am using Android latest SDK Tool(rev.19), and the google web driver rev.2. I found the js execution does not support on android framework mode whatever on emulator 4.0.3 or real 2.3 driver, but it works well on remote android web drvier. Any one know why? is it a bug of google web driver? This

Re: [android-developers] TimePicker 24hours

2012-05-21 Thread David Olsson
http://developer.android.com/reference/android/widget/TimePicker.html Especially: http://developer.android.com/reference/android/widget/TimePicker.html#setIs24HourView(java.lang.Boolean) setIs24HourView

[android-developers] Contacting Google - how things are done... by Google

2012-05-21 Thread Stanislav Vlasic
Hello to group! I have nothing much to say, see link below: http://www.wgmetal.hr/documents/contacting_google.pdf -- 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] Softkeyboard

2012-05-21 Thread Tony
I want to program a softkeyboard where you click on a key, and instead of outputting an alphabet into the textediting area, i want it to output a different letter or symbol. Sort of like how a japanese romaji keyboard would work. (eg: when you click on the a, r, i, g, a, t, o, u keys, it would outp

[android-developers] Re: Help

2012-05-21 Thread Mark
OOPS.. Here is the code This all happens from a button pressed on the 2nd layout (items.xml) private View.OnClickListener onAddItem = new View.OnClickListener() { public void onClick(View v) { setContentView(R.layout.additem);

[android-developers] Why none of the Motorola add-ons in the SDK cannot be launched in emulator

2012-05-21 Thread technicware
Hi, I have the latest Android SDK r19 with several Motorola device add-ons: Atrix2, xt882, etc. None of them can be successfully run in the emulator. Logcat reports all kinds of error, like file not found, cannot cache xyz, no space left on device, etc. I also have a LG Real3D add-on, and it r

[android-developers] How to do Client Server Communication in android ? Android device -client & PHP Server

2012-05-21 Thread Unnati
Hi, I am working on an android application which needs to communicate to server using HTTP . An android device should send some data over to server periodically and receive response from the server as well. Apperantly, Server should (store)keep track of number of active android app user at specifi

[android-developers] Connection over data network

2012-05-21 Thread Vincent
Hi, I'm having some problems connecting to the data network (3G connection). I added the internet permission and can access it when using a WIFI connection. When using the data connection of the phone network it somehow seems that I can access the URL's I'm calling. Any ideas, do I need to add oth

[android-developers] How to get value from string array?

2012-05-21 Thread Tommy Wong
I use a spinner that the choice of spinner comes from array A <- I have did it while array B has corresponding value of A I hope to get the value from B when I use the spinner, how can I do so? I don't know how to relate two arrays :( Thanks -- You received this message because you are subscribe

[android-developers] Re: book page flip transition

2012-05-21 Thread May Swan
Maybe the program page flip softwarecan help you out. I had ever used the software for creating page flipping ebook for my Android Samsung. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To po

[android-developers] Google apps failed to start on Android 4.0.3

2012-05-21 Thread Jim Morgen
Hi all, I'm a newbie of Android user and I'm not sure whether I'm posting this issue in a right place (if it's not, please help to point me the right place). I have a HTC Desire V phone with Android 4.0.3, but I hit problem when start Google Play 3.5.19 on this device, it quit quietly immediately

[android-developers] how to send SMTP message from an android app to a web application

2012-05-21 Thread Irfan
hi guys i am developing an emergency system that consist of an android app and a web application, i need to sent a alert message from my andoid app that contain some msg when the alert button was pressed in ma android app to web application via SMTP, i want ur guidence about how the coding stu

[android-developers] Can you guys sync android source code successfully?

2012-05-21 Thread Daniel Wang
I fail to do so from last month. Can you guys access URL below? https://android.googlesource.com/platform/manifest Thanks very much! -- 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@g

[android-developers] Re: AudioRecord is not working as expected

2012-05-21 Thread rahul B
Dear Amit, please help me out. can you post your running code. I am in search since many days. Plese help me out. Thanks. On Monday, February 27, 2012 12:57:02 PM UTC+5:30, amit wrote: > > I have written following code in which I am trying to record and play the > audio... But all I get is jus

[android-developers] Bug RelativeLayout

2012-05-21 Thread Javier Tejedor
*is this a bug of Android?* *Why does the right margin is higher than the rest?* * * ImageView imagen = new ImageView(this); RelativeLayout relative = new RelativeLayout(this); // RelativeLayout.LayoutParams labelLayoutParams = new RelativeLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutPar

[android-developers] Re: Can not get the source from https://android.googlesource.com/platform/manifest -b android-4.0.1_r1

2012-05-21 Thread Daniel Wang
Hi Buddy, Can you get the latest android source code successfully now? I get "DNS look up error". It worked before, but kept on failing from last month. On Apr 28, 1:08 pm, Bin Dou wrote: > Hi all: >    I have already repo initialized  in my workdirectory, but I got the > problem when i try to

[android-developers] Syncing Multiple Devices

2012-05-21 Thread Thomas Holmes
I apologize if this question has been asked before a thousand times. I'm getting back into Android Development, I have a few Android phones, and a few tablets to work with. I have been doing Java for a long time now, and I have Eclipse and the Android SDK all running on my linux laptop. Since I h

[android-developers] Using eclipse with ubuntu

2012-05-21 Thread Telmo Neves
Hi everybody I am developing an application to android and now i want to test it in my android samsung with froyo but i am using eclipse in ubuntu and is never reconigzed. I appreciate any help Thanks -- You received this message because you are subscribed to the Google Groups "Android Develop

[android-developers] HTML email and GMail app

2012-05-21 Thread Chris Rees
(Please CC-- I'm not subscribed) Hi all, I am (and many other Android users are) making myself rather unpopular in many communities by replying to people from my Nexus-- is there any possibility of adding a 'Plain text' option?  HTML email is entirely unnecessary when composing on a phone (many w

Re: [android-developers] call an Activity by intend and callbyvalue

2012-05-21 Thread Raghav Sood
Use the extra feature of intents. Pass the value as an extra, ans retrieve it on the other side. Thanks Raghav Sood Sent from my Nexus S On May 21, 2012 1:00 PM, "superpsycho" wrote: > Hi, > i´ll want to call the NextActivity, give an integer to its creation > and identify whats to create by th

[android-developers] Sent SMTP message from android app to a web application

2012-05-21 Thread Irfan
guys pls help me how can sent a SMTP message from an android app to a web application -- 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,

Re: [android-developers] Deleting from item from listview using OnItemLongClickListener

2012-05-21 Thread Fabien R
On 18/05/12 13:47, Tadas Martinkus wrote: > > Hello, > In code I have listview which is saving in Arraylist. Everything with > item adding work, but i want to delete it using long click listener. I use > some tutorials but it doesn't work - when i run program it get froce close. > i use this sour

Re: [android-developers] Using eclipse with ubuntu

2012-05-21 Thread Yaron Reinharts
Hi, Did you follow this guide (section 3)? http://developer.android.com/guide/developing/device.html Hope this helps /Yaron -- Yaron Reinharts Smart Drive Applications http://www.poncho.co.il/gateaway.php https://market.android.com/details?id=com.poncho.gsm.gate.activities On 05/18/2012 02

[android-developers] Re: Contacting Google - how things are done... by Google

2012-05-21 Thread sparky
I'm following up on this. On May 15, 6:57 pm, Stanislav Vlasic wrote: > Hello to group! > > I have nothing much to say, see link below: > > http://www.wgmetal.hr/documents/contacting_google.pdf -- You received this message because you are subscribed to the Google Groups "Android Developers" gro

Re: [android-developers] AT commands on android emulator

2012-05-21 Thread chengdong diao
echo "at" > /dev/sdm0 but .usually ,the device name is ttyUSB0, I used this command in the adb command line. real phone. 2012/5/21 Fotis Ailianos > Hello, > > Is there any way to send directly AT commands on /dev/sdm0 on Android > SDK emulator. On real phone it works but I cannot find /dev/smd0 o

[android-developers] Re: Deleting from item from listview using OnItemLongClickListener

2012-05-21 Thread imran ali
Hi Tadas, It is simple. 1. onLongClick you will get Item position, remove that position data from ArrayList object. 2. Then Notified Listview adapter data has changed as " listAdapter.notifyDataSetChanged(); ". Hope it will resolve your issue. If not then let me know. Regards Imran Ali On Fr

[android-developers] Re: call an Activity by intend and callbyvalue

2012-05-21 Thread imran ali
Hi I think It will give compile time error, how you are calling like this? "1. Intent dosth = new Intent(ThisActivity.this, * NextActivity(integervalue).class*); " if you want similar you can try like this 1. Intent dosth = new Intent(ThisActivity.this,*(new NextActivity(integervalue)).getclass

Re: [android-developers] Re: NullPointerException in onRestoreInstanceState

2012-05-21 Thread albnok
> > I cannot divulge the source code as it is for work - however I've done >>> some renaming and stripped it down. However, after stripping it down to >>> just the parts which I suspect cause the bug, and enabling the line that >>> causes the bug, the bug doesn't happen anymore! >> >> >>> So th

[android-developers] Re: [Android LVL] Sporadic false negatives on client devices

2012-05-21 Thread Michael A.
On Monday, 7 May 2012 15:07:23 UTC+2, Florin wrote: > > I have an Android developer account and a couple of paid apps > published on the Market since a while now. I have decided to use > Android LVL for copy protection from the start on all of my apps, I > found it pretty straightforward to use

[android-developers] Problems with HttpClient when the function is used by various devices at same time

2012-05-21 Thread saex
Using httpclient (apache credentials) connection to download various bitmaps with various devices is failing with one is working OK, ¿why? i'm developing an app for android (java) that it is connecting to a server to download 50 bitmaps, and i'm using this function each time to download

Re: [android-developers] android live vedio streaming project

2012-05-21 Thread kavitha chidambaram
Can you tell me, how are you playing? using HTTP or RTSP? If you are using HTTP, clear cache data in Internet Explorer. It will play latest video... On Thu, May 17, 2012 at 12:25 AM, SHEYAM CONSTANTINE wrote: > i am in a project of live viedo streaming from android device but the > time of viedi

[android-developers] Re: Publishing free and paid versions of the same app

2012-05-21 Thread Ali Chousein
An alternative would be to provide your paid features using in-app payment model. In this case you'll have to maintain just one APK and personally I believe it's a better approach for convincing users to pay for features that you are selling. User will already see and use the free features before d

Re: [android-developers] Re: Publishing free and paid versions of the same app

2012-05-21 Thread Balint Farago
Can one implement in-app paying, when they registered as android developer from a country that is not supported to sell paid applications? If they can, this is a workaround for many of us who live in unsupported countries and can "sell" only free apps. Btw, your idea +1 2012/5/21 Ali Chousein >

[android-developers] Re: Whenever i move out from an activity, which is in a task of singleTask, activtiy is being cleared up to root of the stack

2012-05-21 Thread Jonas Schwertfeger
Dianne, Any update on this? As of ICS, any app opened via installer suffers from this. See http://code.google.com/p/android/issues/detail?id=26658 for instance. -Jonas On Saturday, December 5, 2009 4:09:56 AM UTC+1, Mark Wyszomierski wrote: > > Hi Dianne, > > To follow up on this, the package

[android-developers] MotionEvent.ACTION_MOVE with multitouch

2012-05-21 Thread Habba
If user is using an app with two fingers on the touch screen, how can I tell which finger produced the ACTION_MOVE event? I can't find the correct pointer id from the event, it always returns the pointer id of the first one. As a work around I'm iterating through all pointer ids and tracking th

Re: [android-developers] Re: [Android LVL] Sporadic false negatives on client devices

2012-05-21 Thread Kostya Vasilyev
21.05.2012 12:49, Michael A. написал: Any app that is popular enough is going to find its way to pirate sites pretty soon, and the LVL is (unfortunately) completely inadequate to prevent that. So why risk the goodwill of the people who have actually purchased the app, but adding in code tha

Re: [android-developers] Problem with windowSoftInputMode="adjustResize" in landcape mode

2012-05-21 Thread Miha Valencic
Dianne, Kostya, I can confirm that the method that the browser uses fixes this issue. I've added an override to the view: @Override *public* InputConnection onCreateInputConnection(EditorInfo outAttrs) { InputConnection connection = *super*.onCreateInputConnection(outAttrs); outAttrs.imeOpti

[android-developers] Webkit plugin - How to use PluginStup

2012-05-21 Thread MegamanX
Hi all, I want to create a webkit plugin but with the ro.secure problem it seems that is impossible. So I want to know if the use of the interface PluginStub can bypass this problem ? If yes, can examples be shown please ? Thank in advance ! MegamanX -- You received this message because you a

[android-developers] Re: AppWidgetManager, function updateAppWidget not working after an undetermined time

2012-05-21 Thread Jorodan
Hi, I add an idea. Is it possible to have to big elements sended to the WidgetManger ? Le jeudi 17 mai 2012 06:24:42 UTC+2, Jose_GD a écrit : > > Hi Jorodan, > > Are you aware that broadcast receivers like appwidgets have a very short > lifecycle? > To make a robust updating scheme you must do

Re: [android-developers] Content Providers

2012-05-21 Thread Mark Murphy
On Mon, May 21, 2012 at 1:21 AM, Mohit Ramani wrote: > I am developing an application which will have to catch notifications for > Incoming SMS, Outgoing SMS, Missed Calls, Incoming & Outgoing E-mails. Now I > have found a way to get all these notifications except for the e-mail which > seems impo

Re: [android-developers] Android

2012-05-21 Thread Mark Murphy
Fortunately, this is not possible for an SDK application, for obvious security and privacy reasons. On Thu, May 17, 2012 at 2:05 AM, Milap Gajjar wrote: > How can hide my application in android mobile?, but application > running background. > > -- > You received this message because you are subsc

[android-developers] Re: Linux Commands in Android

2012-05-21 Thread Meryeme
well thank you it is really helful sorry I did not pay attention that we can install and use it. well just have some problems during the instalation I was following this tutorial http://forum.frandroid.com/topic/6498-tuto-installer-busybox/ but when I want to copy busyBox in xbin folder it gives me

[android-developers] Re: [Android LVL] Sporadic false negatives on client devices

2012-05-21 Thread andrew android
Google must do something about this. I had even devised a simple method of discouraging (rendering ineffective) the most basic LVL hack. It simply involved using bogus qualifications and setting a boolean switch to indicate if a negative value returned, then only accepting a positive value if

[android-developers] Re: Softkeyboard

2012-05-21 Thread Solution 9420
Hi, I am the author of 9420 Tablet Keyboard, it is on Google Play. What you are looking for can be done by creating key-sequence logic of output, we usually call "meta state". For starter, you want to look at onKey() method to intercept input from onscreen KB and start from there. Best Regards,

[android-developers] Re: Contacting Google - how things are done... by Google

2012-05-21 Thread Pent
> I'm following up on this. Hilarious :-) To get a response from Google you have to publish a large document detailing multiple contact attempts and spread the URL around the web. Pent -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To p

Re: [android-developers] Re: [Android LVL] Sporadic false negatives on client devices

2012-05-21 Thread Kostya Vasilyev
2012/5/21 andrew android > > let's keep up the pressure on Google to fix it. > Huh? Actually, good luck :) -- 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 unsub

[android-developers] Re: Publishing free and paid versions of the same app

2012-05-21 Thread Ali Chousein
> Can one implement in-app paying, when they registered as android developer > from a country that is not supported to sell paid applications? I doubt it. You can try finding the answer to your question here: http://developer.android.com/guide/market/billing/index.html Maybe a workaround which wo

[android-developers] Re: Sent SMTP message from android app to a web application

2012-05-21 Thread lbendlin
- Read up on how SMTP actually works - use one of the built-in mailers or create your own SMTP client On Monday, May 21, 2012 3:54:18 AM UTC-4, Irfan wrote: > > guys > pls help me how can sent a SMTP message from an android app to a web > application > -- You received this message because you a

[android-developers] Re: Pasar de una pantalla a otra

2012-05-21 Thread lbendlin
you start a new activity. You may also want to read about the activity lifecycle. That is pretty fundamental to understand Android applications. On Sunday, May 20, 2012 9:44:50 PM UTC-4, Luis Chacha wrote: > > La pregunta es como pasar de una pantalla a otra. Por ejemplo desde la > pantalla act

[android-developers] Problem in calling sms application in android 3.0 and above

2012-05-21 Thread Sivasankar K
Following is the piece of code by which i am trying to open the android device default sms application with message and number to be prefilled String uri = "smsto:4162315"; String body = "h"; Intent sendIntent = new Intent(Intent.ACTION_SENDTO); sendInte

Re: [android-developers] Re: [Android LVL] Sporadic false negatives on client devices

2012-05-21 Thread b0b
LVL is insufficient, no matter how much you modify it. Additional custom anti-tamper code is required to make the job of crackers a bit more difficult. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to a

[android-developers] Receiving erroneous glitch bitmaps from httclient connection ¿what i'm doing wrong?

2012-05-21 Thread saex
I'm connecting to a server to get 50 bitmaps, and i'm using this function for each bitmap: public static Bitmap getRemoteBitmap(String url) { int cont=0; //reintentos Bitmap bm = null; do{ if (bm != null){ if (bm.isRecycled()==false)

[android-developers] How to resume on previous activity after finishing the newly launched activity

2012-05-21 Thread sunny
I have an activity running as a service and I start a new activity through it and after completion a task i closed this activity calling the finish() method...but my previous activity stops ,can u please help me how can i resume my previous activity after closing the newly launched activity... one

Re: [android-developers] AT commands on android emulator

2012-05-21 Thread Fotis Ailianos
For the real phone it works. What about the emulator? Is there a modem device on emulator? Regards On Monday, 21 May 2012 11:24:08 UTC+3, dongchengdiao wrote: > > echo "at" > /dev/sdm0 > but .usually ,the device name is ttyUSB0, > I used this command in the adb command line. real phone. > 201

[android-developers] pull to refresh in horizontal listview

2012-05-21 Thread arun kumar
Hello all, I want Pull to refresh in horizontal list view. Anybody please help me I already try pull to refresh from top to bottom. it works fine. but i need horizontal listview -- WITH REGARDS ARUN KUMAR P D +91-9994794759 -- You received this message because you are subscribed to the Goog

Re: [android-developers] pull to refresh in horizontal listview

2012-05-21 Thread David Olsson
Create it yourself Come back when you have more specific questions with logs There are sources out there for pull to refresh for regular listviews, check them out and implement something you want On Mon, May 21, 2012 at 2:38 PM, arun kumar wrote: > Hello all, > I want Pull to refresh

Re: [android-developers] BroadcastReceiver: Is it safe to use setOrderedHint method in my code?

2012-05-21 Thread Kiran Rao
Bump! I'm still looking for clarification on this comment: using BroadcastReceiver as a separated class not known by the rest of the > framework On Friday, 18 May 2012 12:27:38 UTC+5:30, Kiran Rao wrote: > > Dianne, > > I'm not sure I fully understand this phrase in your comment: > > using Bro

[android-developers] Re: "factory data reset" in source code?

2012-05-21 Thread Yan
You could get alot of people with unlocked devices mad at you if their phones get relocked and they don't have a code to unlock them again... On May 20, 7:42 pm, Serj wrote: > Hi guys, > can someone tell me which class in the source code of Android 2.x.x > implements a function for menu icon "Set

[android-developers] Re: Using eclipse with ubuntu

2012-05-21 Thread Yan
With some of the *buntus you have to change the USB Vendor ID in the SYSFS{idVendor} statement for every device, but with some of the more recent *buntus you only have to set it up for one USB Vendor ID then after that it will recognize most any other devices plugged in, that is, if you only plug o

[android-developers] Re: Performance issues on android

2012-05-21 Thread Yan
I just sprinkle Log.d's with time deltas around the bottleneck areas and see what's wasting time... On May 17, 7:53 pm, Henry wrote: > Hi - I have an android app that is continuing to have loading and > speed issues, regardless of the numbers of users. > > Does anyone have experience is performan

[android-developers] Re: Bitmap rotation performance

2012-05-21 Thread Yan
They could possibly be using an OpenGL texture to do that "in a very fast manner"... On May 18, 7:48 am, Mauro wrote: > Hi you all, > the question is simple: how to accomplish the bitmap rotation for big > size bitmap without blocking the user for a lot of seconds? For > example in the default an

[android-developers] Re: noob developer, application keeps restarting

2012-05-21 Thread Yan
An easier but less graceful way is just to System.exit(0) in the onPause then start from scratch every time... On May 21, 1:14 am, Raghav Sood wrote: > When it is in the background, Android kills your application when it needs > more resources. One way to keep your data would be to write it to >

[android-developers] android configuration change asynctask

2012-05-21 Thread Greenhand
I read the thread "AsyncTask and screen rotation" in this group. I would like to know further about "no messages will be processed between onRetainNonConfigurationInstance() to the following onCreate()" under the hood, replied by Dianne Hackborn. If reading some Android source code is needed, g

[android-developers] Change time/date

2012-05-21 Thread lcs_godoy
Hi all, Is there a way to change time and date without root access on android? 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 group

[android-developers] Eclipse errors coming out from no where???

2012-05-21 Thread Dan Uff
Hi all, I am developing an Android app and everything was working fine yesterday. Now, when I go back into the app, and try to run it, I get the following errors: setContentView(R.layout.contactlanta); [R cannot be resolved or is not a variable] Button back = (Button) findViewById(R.id.back

  1   2   >