Re: [android-developers] Compiling Android Source

2011-04-10 Thread Nathan Forbes
On 04/10/11 01:48, Andrew wrote: I am having some difficulty compiling the source code. This post is largely posting my problems and solutions that I was unable to find anywhere else. (I have been following the directions from here: http://source.android.com/source/downloading.html) Repo

Re: [android-developers] Compiling Android Source

2011-04-10 Thread Nathan Forbes
On 04/10/11 01:48, Andrew wrote: I am having some difficulty compiling the source code. This post is largely posting my problems and solutions that I was unable to find anywhere else. (I have been following the directions from here: http://source.android.com/source/downloading.html) Repo

[android-developers] View Open files downloaded from the server

2011-04-10 Thread Salma hamed
Hi, I'm having an Android Ftp Client, I download different types of files (.txt , .pdf , .mp3) from the server. And then I list all the files I downloaded. So my questions are as follows: 1) if I downloaded it on the internal memory of the Android device. Is there a way to view the file ?? 2) If

Re: [android-developers] Compiling Android Source

2011-04-10 Thread Andrew
Well that does make more sense. I guess the point at which lunch stopped working was when I restarted the shell. So I then when and installed lunch, which then overrode and use of the lunch script from then on. Any thoughts on the linking error when compiling using -j4? (That being said,

[android-developers] Fragment init confusion

2011-04-10 Thread Brill Pappin
I'm attempting to convert an app from a standard activity based app to a fragment based app and I'm a bit confused on where I should place code that i used to have in onCreate(Bundle). The lifecycle is pretty clear that the sequence is onCreate() - onCreateView(). Additionally, it looks like

[android-developers] Re: info incorrect on http://developer.android.com WHICH COULD PREVENT ECLIPSE FROM RECOGNIZING YOUR DEVICE

2011-04-10 Thread Brill Pappin
Thanks for the info Scott, that would have tripped me up! Maybe don't write it in caps next time though :) it makes things much harder to read. - Brill -- 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: green hue

2011-04-10 Thread Brill Pappin
I think you might need to define what you mean by green hue. from what you said, it looks like you want to push the values toward the green for your bitmap, which might be done with a BitmapShader and a Shader for your colour passed to a ComposeShader (maybe a gradient shader with a single

[android-developers] Re: Compiling Android Source

2011-04-10 Thread Dan
Did you install all the packages required from: http://source.android.com/source/initializing.html I'm able to build error free from the latest repo synced source. I routinely use make -j8 on a 6 core AMD phenom box and only see errors I introduce. :) Have you run x86memtest? This build will

Re: [android-developers] Fragment init confusion

2011-04-10 Thread Dianne Hackborn
Any initialization that involves views associated with the fragment must be done in onCreateView() (or I guess later), since that is the place where you actually create and return your view hierarchy. There is basically no reason to use onRestoreInstanceState(), and no need for this with

Re: [android-developers] Fragment init confusion

2011-04-10 Thread Brill Pappin
But onCreate is called before onCreateView... which is where my confusion really stems from. The fact that I need to initialize my internal components in onCreateView means it has to happen after onCreate. Also, I'm not clear on whether i can access my internal components after calling

[android-developers] camera can't recorder

2011-04-10 Thread mlc
hi,all The log show Unsupported parameter(x-pvmf/media-input-node/cap-config-interface;valtype=key_specific_value) when the program run.Who can tell me why ? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: how to change behavior of default application in android

2011-04-10 Thread Kacee
My intent is to customize an existing in-built app, say Phone app. Like when i end a call, I want to show some msgs/pictures at the end of call. I know it sounds wierd... but just giving an example. So is there any way that for such a small customization, I dont have to re- write full app and

Re: [android-developers] Re: how to change behavior of default application in android

2011-04-10 Thread Marcin Orlowski
* http://webnetmobile.com/twitter/* On 10 April 2011 11:31, Kacee komal...@gmail.com wrote: My intent is to customize an existing in-built app, say Phone app. Like when i end a call, I want to show some msgs/pictures at the end of call. I know it sounds wierd... but just giving an example. So

[android-developers] How to configure Manifest and Eclipse for lowest minSdkVersion possible

2011-04-10 Thread MarcoAndroid
Hello there, Searched this forum, read of course http://developer.android.com/guide/practices/screens_support.html but couldn't figure out how to do the following: I've got an app which runs on 1.6 and higher: uses-sdk android:minSdkVersion=4 android:targetSdkVersion=7 / I'd like this app

[android-developers] Re: how to change behavior of default application in android

2011-04-10 Thread Kacee
May be customization is not the right word, but I want to perform this task. Is this thing possible ? On Apr 10, 2:50 pm, Marcin Orlowski webnet.andr...@gmail.com wrote: * http://webnetmobile.com/twitter/* On 10 April 2011 11:31, Kacee komal...@gmail.com wrote: My intent is to customize an

Re: [android-developers] Re: how to change behavior of default application in android

2011-04-10 Thread Mark Murphy
On Sun, Apr 10, 2011 at 6:37 AM, Kacee komal...@gmail.com wrote: May be customization is not the right word, but I want to perform this task. Is this thing possible ? You can create your own firmware that incorporates such changes to a built-in app. -- Mark Murphy (a Commons Guy)

[android-developers] Re: How to configure Manifest and Eclipse for lowest minSdkVersion possible

2011-04-10 Thread lbendlin
The best solution is to set it to 9 and then test your app on a 1.6 device (or a 1.6 emulator if you must). You can also use reflection for any new features that would throw 1.6 into a wobbly. -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: camera can't recorder

2011-04-10 Thread lbendlin
Only you know the answer. You are the only one who has seen the code for the call... -- 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] Re: how to change behavior of default application in android

2011-04-10 Thread Kacee
Sadly... I can not make such changes ... I thought with android there must be some way to do so.. Thanks for all the replies On Apr 10, 4:17 pm, Mark Murphy mmur...@commonsware.com wrote: On Sun, Apr 10, 2011 at 6:37 AM, Kacee komal...@gmail.com wrote: May be customization is not the right

[android-developers] Re: How to configure Manifest and Eclipse for lowest minSdkVersion possible

2011-04-10 Thread MarcoAndroid
Yeah know about the reflection solutions. But can't find anywhere a clear explanation on what happens with XML tags you use that are available in newer SDK versions (as set in your targetSDKVersion), but not in your minSdkVersion... Are they just skipped by the older versions? On 10 apr, 13:23,

[android-developers] Re: How to configure Manifest and Eclipse for lowest minSdkVersion possible

2011-04-10 Thread lbendlin
yes, they are ignored by older versions -- 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] Re: View Open files downloaded from the server

2011-04-10 Thread lbendlin
I was about to send you a lmgtfy link... http://www.androidsnippets.com/open-file-with-default-application-using-intents -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: View Open files downloaded from the server

2011-04-10 Thread Mark Murphy
That's a bad snippet, but their site's login seems broken. I would avoid using wildcard MIME types for specific files like this. For example, there might be an audio player that only handles OGG, not MP3 -- the ACTION_VIEW shown here would still offer that OGG-only player as an option, which

[android-developers] How to insert and update email addresses in Android contacts

2011-04-10 Thread Ali Chousein
Started blogging on Android software development: http://email-addresses-in-android-contacts.blogspot.com/ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

[android-developers] Re: how to implement presentation of images and audio

2011-04-10 Thread Jumana
still haven't got a solution to this. can anybody please help? On Feb 14, 11:51 pm, Jumana jumanamaj...@gmail.com wrote: what all elements should i use to make a simple presentation like app with just images and audio files. It should finally come out like a .pps file. Please suggest various

[android-developers] GridView - onselect or onclick ??

2011-04-10 Thread Jumana
In The Busy Coder's Guide to Android Development, the GridView has been implemented using onSelect listener. But when i run the application on the emulator, nothing seems to happen when i click on a grid item. Alternatively when i implemented onClick listener and callback, I was able to capture

Re: [android-developers] GridView - onselect or onclick ??

2011-04-10 Thread Mark Murphy
On Sun, Apr 10, 2011 at 9:00 AM, Jumana jumanamaj...@gmail.com wrote: In The Busy Coder's Guide to Android Development, the GridView has been implemented using onSelect listener. But when i run the application on the emulator, nothing seems to happen when i click on a grid item. It's not

[android-developers] How to mark touch points in an image

2011-04-10 Thread neohacker
Hi, In my project there is an image. When user touches any place in image it should be marked with a cross sign. Also we have to clear this crosses on button click. I managed to display the image. What i have to do in the ontouchlistener() function to display the cross point?? pls help??? --

[android-developers] Re: GridView - onselect or onclick ??

2011-04-10 Thread Jumana
Just the answer i was looking for. many thanks, Mark! On Apr 10, 5:09 pm, Mark Murphy mmur...@commonsware.com wrote: On Sun, Apr 10, 2011 at 9:00 AM, Jumana jumanamaj...@gmail.com wrote: In The Busy Coder's Guide to Android Development, the GridView has been implemented using onSelect

[android-developers] Re: How does one post a question here?

2011-04-10 Thread varinag gold
On Apr 8, 12:17 pm, TreKing treking...@gmail.com wrote: On Thu, Apr 7, 2011 at 8:07 PM, Greg v.greg...@gmail.com wrote: How do people ask questions here? Exactly as you just did. Did I use too many words? Nope. Was my code too complicated? Uh-uh. What's the secret? Patience.

[android-developers] Re: How does one post a question here?

2011-04-10 Thread varinag gold
Patience. Google Groups ain't the fastest sometimes. I want to say, it is very often google Team will not bother to answer your questions and not 'sometimes'. But few other guys might try to answer within their knowledge. I'll suggest you, try to be clear and concise in asking question and

[android-developers] Re: LVL Retry Count

2011-04-10 Thread Nicholas Johnson
I use the default implementation of the Server Managed Policy (read about it herehttp://developer.android.com/guide/publishing/licensing.html#ServerManagedPolicy) for a paid version of my app, and haven't had any problems of note. I haven't had any complaints about false-negatives, or the like

[android-developers] Re: LVL does not work while testing

2011-04-10 Thread Nicholas Johnson
Ted, Besides doing what jtoolsdev already said, make sure that you're associating your Google account with your phone (Settings-Account-Add Account). If you're using your own phone to test it out, then I assume that you're Gmail account is already associated with your phone. Also, the LVL

[android-developers] Re: Connecting Andrid Application to Sql Server Database

2011-04-10 Thread Nicholas Johnson
The best way I've found to connect your local (app) database to your server database is to exchange information through JSON strings. Post a query through an HTTP POST method to your website, decode the information, process the SQL query on the server (I use PHP), then build and send a JSON

RE: [android-developers] Re: Connecting Andrid Application to Sql Server Database

2011-04-10 Thread Tommy
I use this same method only I return back XML instead of JSON with my .net webservices and app. From: android-developers@googlegroups.com [mailto:android-developers@googlegroups.com] On Behalf Of Nicholas Johnson Sent: Sunday, April 10, 2011 10:54 AM To: android-developers@googlegroups.com

[android-developers] Re: 3d engine advices

2011-04-10 Thread Nicholas Johnson
Are you trying to port a 3D desktop game to Android, or just create something new? If you're already familiar with using OpenGL on the desktop, it's actually not that big of a transition to OpenGL ES 1.x or 2.0. The API is reduced to its basics, but still offers almost everything you need.

[android-developers] Re: Compiling Android Source

2011-04-10 Thread Andrew
Yes, I did install all of the items from that website. (That is the tutorial I used to set it up initially). There error with make -j4 seams to have fixed itself - whether it was downloading a fresh repo or installing the extra libraries or both, I don't know I left it running before I hit the

[android-developers] Re: How to increase the amount of time to consider input complete, in android voice recognition?

2011-04-10 Thread BFL
I was going to play with tweaking these settings, too, because sometimes it takes off to voice recognition land before the user is really done... especially for new users... but the javadoc warns in a way that leads me to believe that these settings could be pretty unreliable... and your

Re: [android-developers] Re: help: dont display Toast

2011-04-10 Thread luiX_
I didn't too. Any particular reason to use Asyntasks instead of threads? I don't if it has any benefit. El 09/04/2011 20:53, ABSOLUT davidt...@gmail.com escribió: Yes, everything is ok. Anyway, I didnt know that I cant use long operations inside oncreate method. I'm trying to use asyntask or

Re: [android-developers] Fragment init confusion

2011-04-10 Thread Dianne Hackborn
On Sun, Apr 10, 2011 at 1:07 AM, Brill Pappin bpap...@sixgreen.com wrote: But onCreate is called before onCreateView... which is where my confusion really stems from. The fact that I need to initialize my internal components in onCreateView means it has to happen after onCreate. Well any

Re: [android-developers] Re: How to configure Manifest and Eclipse for lowest minSdkVersion possible

2011-04-10 Thread Dianne Hackborn
Whenever we talk about changes in behavior for compatibility, we are talking about targetSdkVersion. The targetSdkVersion you set is the highest version you have tested your app on, so the platform assumes you don't need any of the compatibility features for applications developed against older

[android-developers] Why can't my GUI return back to recording mode despite having service? Someone HELP..

2011-04-10 Thread lyrical.mas...@hotmail.com
I'm creating an android application which act like a car blackbox, but i run into problem as soon i start doing it, maybe partly because i'm new to android/java but i've given 6more weeks to develop this app... :'( But get back to my problem i had my service run the video recording processes in

Re: [android-developers] Background service stay alive

2011-04-10 Thread Samson Akisanya
Most likely ur music will be in a separate process, that can run in its own service and communicate VIA an aidl interface On 9 Apr 2011 10:10, Eason dragonea...@gmail.com wrote: Hi all, I am trying to make several apps that can listen to system states all the time and give responses when there

[android-developers] Page fault limit in HTC's kernel

2011-04-10 Thread Martin Baulig
Hi, I'm one of the developers of Mono for Android and I just realized that HTC put some hack into their customized kernel to kill a process after encountering more than 10 page faults. I have an HTC Desire HD. Kernel version: 2.6.32.21-g1e30168 htc-kernel@and18-2 #1 Fri Dec 10 18:43:12 CST 2010

[android-developers] Runtime.getRuntime().exec() weird issues

2011-04-10 Thread Kevin Kowalewski
Hi, I'm having problems executing shell commands properly from android built from the rowboat-android source project. I have two specific problems that I want to share and see if anyone has possible solutions. 1. Setting the date with date 134355500 sets the date in the local shell, but running

[android-developers] issues about ndk

2011-04-10 Thread pangpang
we can call c function through jni. which compiler by ndk. but is it possible to call java function in native code(example c). and how to do it. i want to use some native code which in the middle layer. and the native code call some hardware driver interface like audio,sensor..; and can called by

[android-developers] Re: how do i devlope an android keybord

2011-04-10 Thread ariel
so i will try to rephrase my question. how i can build a keybord. On Apr 9, 2:10 am, Spiral123 cumis...@gmail.com wrote: hi Ariel. can you rephrase your statement as a question please?  When you say it dont run like keybord what do you mean? How did you try to run it?  In what way did it

[android-developers] wap site is opening in text mode in android.

2011-04-10 Thread mack
ply help me for resolving this issue wap site is opening in text mode.what change i need to make the andriod browser so that it will support wap pages also . -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: Custom font support for non-english characters.

2011-04-10 Thread Kevin Kowalewski
I've also had problems in this area. You need to apply a different font for each of the languages you intent to support. There is no built in font that supports multiple languages. I did try to apply the uniFont (available online) to my textViews but it is too large for Android to support. Kevin

[android-developers] Re: In-app billing problem

2011-04-10 Thread ishihata
Hello, I am worried of the same problem, too. Logcat says as follows. WARN/GTalkService(1268): [DataMsgMgr] broadcast intent callback: result=CANCELLED forIntent { act=android.intent.action.REMOTE_INTENT cat=[com.android.vending.billing.IN_APP_NOTIFY] (has extras) } WARN/GTalkService(1268): TODO:

[android-developers] how to use a checkbox ,a textview and a button in each row of List view.

2011-04-10 Thread Ishan
Hi, i want to use the ListActivity and each row of list should contain a CheckBox, Button and a TextView. Secondly i want to capture the events occurring on checkbox and button. I have to create a drill down approach example filesystem i.e.clicking of the button takes u inside the folder. Can i

[android-developers] view objects : on click

2011-04-10 Thread chinmayi dixit
I have created an object of MyView (which extends View) and it is used in setContentView() In MyView I create 2 objects : of type Drop (which also extends View) I need to identify when these (Drop) objects are clicked on I tried using onTouchEvent in Drop class . But it is not detecting the

[android-developers] Build.prop

2011-04-10 Thread Anant Shrivastava
Hi All, I am new to andriod. as per m understanding from reading countless forum and mailing list threads. One simple way of customize the running andriod is by modifiying values in build.prop can anyone provide me a comprehensive list ot all possible values that can be placed in build.prop. --

[android-developers] physical search button on a phone

2011-04-10 Thread Bomber
Hello, I have recently started developing android apps, with some backgroud java experience, so I am a beginner. Right now I was working on an app, which includes an activity which extends the listactivity class. However I have some trouble impelementing the physical search button on the phone. I

Re: [android-developers] Re: Compiling Android Source

2011-04-10 Thread nathan forbes
I have seen builds break due to using the -j switch. Sometimes the Android build system is very finicky. There's so many factors involved it's nuts, so your errors could be due to the product your building, a missing dependency, etc. Only thing really to do is read the error messages and try to

Re: [android-developers] Background service stay alive

2011-04-10 Thread Samson Akisanya
For the battery state use a broadcast receiveru shouldnt need need a service for that On 9 Apr 2011 10:10, Eason dragonea...@gmail.com wrote: Hi all, I am trying to make several apps that can listen to system states all the time and give responses when there is any event happens. For

[android-developers] File Browser: can not data folder access

2011-04-10 Thread eagles78
hello, I wrote a file browser application for my project.when directories list in a listview,ı cant access the data folder. What can ı do access in it.? Thanks... -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] Why can't my GUI return back to recording mode despite having service? Someone HELP..

2011-04-10 Thread Kristopher Micinski
You can't run your app forever, it will get killed when memory is low, you can't really avoid it (on a non rooted device): apps aren't meant to run and consume resources forever. And I don't think that dumping a large amount of code at people is going to help, unless you can pinpoint your problem

Re: [android-developers] File Browser: can not data folder access

2011-04-10 Thread moonrie
'cause you do not have permission? On Sat, Apr 9, 2011 at 8:11 PM, eagles78 bahtiyarkara1...@gmail.com wrote: hello, I wrote a file browser application for my project.when directories list in a listview,ı cant access the data folder. What can ı do access in it.? Thanks... -- You

Re: [android-developers] File Browser: can not data folder access

2011-04-10 Thread Mark Murphy
On Sat, Apr 9, 2011 at 8:11 AM, eagles78 bahtiyarkara1...@gmail.com wrote: I wrote a file browser application for my project.when directories list in a listview,ı cant access the data folder. What can ı do access in it.? You don't. On production hardware, applications can access external

Re: [android-developers] issues about ndk

2011-04-10 Thread Mark Murphy
Questions regarding the NDK are better asked on the [android-ndk] Google Group. On Sat, Apr 9, 2011 at 9:04 AM, pangpang pangpang7...@163.com wrote: we can call c function through jni. which compiler by ndk. but is it possible to call java function in native code(example c). and how to do it.

[android-developers] Image processing in Android

2011-04-10 Thread Tanco
Hi, I am having a problem with an application I am developing, The application is a web client, after it stars it downloads it's resources from a web, and shows the results in a 3d carousel(very similar to androids market app). The problem occurs when the images are downloaded on the device and

Re: [android-developers] File Browser: can not data folder access

2011-04-10 Thread bahtiyar kara
@monrie there is no permission for access to data folder in android so ı cant use a permission. Do you know any permission to do it? @mark I dont have an experience.Have you used a real file browser in Android and How it access these files? Cant I access there with any way? I think if I request

Re: [android-developers] File Browser: can not data folder access

2011-04-10 Thread Kristopher Micinski
No, you don't request root permission. You have to have a rooted phone, there's no such thing as a rooted permission. And so no, there won't be any permission you can request to see the filesystem. Kris On Sun, Apr 10, 2011 at 1:08 PM, bahtiyar kara bahtiyarkara1...@gmail.comwrote: @monrie

Re: [android-developers] File Browser: can not data folder access

2011-04-10 Thread Mark Murphy
On Sun, Apr 10, 2011 at 1:08 PM, bahtiyar kara bahtiyarkara1...@gmail.com wrote: How it access these files? It doesn't. I think if I request a root access in my application, then can ı access data folder? Yes, but rooting devices isn't really within the scope of this group, and you cannot

Re: [android-developers] File Browser: can not data folder access

2011-04-10 Thread moonrie
k, *the permission I suggest* is linux file permission, not the android permissions declared in the manifest file, On Mon, Apr 11, 2011 at 1:08 AM, bahtiyar kara bahtiyarkara1...@gmail.comwrote: @monrie there is no permission for access to data folder in android so ı cant use a permission.

Re: [android-developers] File Browser: can not data folder access

2011-04-10 Thread Kostya Vasilyev
10.04.2011 21:29, moonrie пишет: k, *the permission I suggest* is linux file permission, not the android permissions declared in the manifest file, If that was possible with Linux, that'd be a massive security hole, and not just in Android. Thankfully, there isn't one there. Android uses

[android-developers] Secure requests to a Webservice via Android

2011-04-10 Thread elioncho
Hello, I've and android application which sends post requests to a web service. I want to secure the communication between the two and was wondering which is the best approach: 1) Make https requests 2) Encrypt the request params via an encryption algorithm and decrypt on the web service (I

[android-developers] Recommended icon sizes for xhdpi

2011-04-10 Thread Brill Pappin
Does anyone know what the recommended icon sizes are for xhdpi images? Table 1. at http://developer.android.com/guide/practices/ui_guidelines/icon_design.html has not been updated to reflect the new features yet. - Brill -- You received this message because you are subscribed to the Google

[android-developers] Re: Image processing in Android

2011-04-10 Thread lbendlin
And you already have exhausted all the MAT features? -- 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] Ghosla

2011-04-10 Thread harsh jakkappanavar
hey, we were implementing a game called Ghosla. we are stuck at a point right now, actually we want to send the code to you, for you to check the code first and then we could ask the doubts, and it'll be easy for you to understand what v are trying to implement, so is there any way, where we can

Re: [android-developers] Re: In-app billing problem

2011-04-10 Thread Sebastian Pereyro
Hi, Thanks for your info Ishihata, very useful. Now I am thinking more and more that this is a market issue. I am having the problem on a Motorola Cliq with Android 2.1-update1. I am in the US, so I don't think it is related to the country you are testing from. I would suggest adding your

[android-developers] Draw circle in widget

2011-04-10 Thread - A
Hi, I am very new to Android. Is it possible to draw a circle using canvas in widget and change color time to time? I mean, is it possible to draw shapes in widget where I dont have images and shape / its color changes as time. goes on? Any pointer is highly appreciated. Regards, - A --

[android-developers] My first app

2011-04-10 Thread anik
Hi every one, I just started with my android application but facing problem when i build the application or when i run my application.Please see if anyone can fix.Please reply as early as possible. this is what is shown at Console Tab on Eclipse IDE. [2011-04-08 20:26:03 - Golf2] Error in an

[android-developers] Re: Problems with Activity Flow during OAUTH Authentication

2011-04-10 Thread Tomas Prochazka
I found that the FLAG_ACTIVITY_NO_HISTORY for browser works, but only if the browser was not running before. If I restart Android and run my app which call browser everything work well. But when I start browser before my app, browser will stay in history. Related question, but also without

Re: [android-developers] Re: Tasks browser activity

2011-04-10 Thread Tomas Prochazka
WebView has two disadvantages 1.) It is security holes. App which open OAuth authorization page in WebView can acces my password 2.) In standard browser I have stored password and I don't need enter it again and again in every app which need acces to me twitter. -- You received this message

[android-developers] Re: Activity stack with browser and protocol handler

2011-04-10 Thread Tomas Prochazka
Yo can use intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY); But I found that this work only if the browser was not running before. If I restart Android and run my app which call browser with this intent everything works well. But when I start browser before my app, browser will stay in

[android-developers] how to display all checked items from multiple choice listview

2011-04-10 Thread win
hi there, i'm doing an application that displaying a list of guest than will attending some event. what i need to do is : *to display all the Guest name in listView + checkbox + button attend and not attend at the bottom of the list *when user click the attend button, it will list all the

[android-developers] Activity Restart On Rotate Phone

2011-04-10 Thread Jons Jean
Hi community ; I am facing a problem , I am working on an application where I am creating dynamic UI ,I install this application in my android phone problem is this when I rotate phone its activity got restart , How I can handle it ? From google I find the way to handle this

[android-developers] Use standard system browser for OAuth / Keep browser out of history

2011-04-10 Thread Tomas Prochazka
I want use system browser for Twitter/Foursquare OAuth authorization. I think that this is safer then open browser in Webview directly in my app. System browser also can remember user password and he can't enter it again and again. My idea is open the browser via standard intent Intent

[android-developers] Main Activity Launches On Stack Every Time Home Screen Icon Is Clicked

2011-04-10 Thread Tony Chuinard
My application consists of a LoginActivity followed by a BrowseActivity. When the user hits the Browse Activity, then hits the Home button, then hits the application icon again, the LoginActivity relaunches (but they're already logged in and in the browse activity so they should be there).

[android-developers] Live wallpaper canvas flickers when it includes a bitmap

2011-04-10 Thread Matt Watkins
For my live wallpaper I use the following code (called by a Runnable) to draw each frame. Each time it is called, I fill the current canvas with a solid color and draw a background bitmap (bg_image has been resized to perfectly fit the screen). I then call drawParticles(c), which simply uses

[android-developers] Problem deploying app to orange sand francisco on windows7

2011-04-10 Thread Penelope
Hi, I have trawled the internet in search of suggestions about how i can get round problems relating to connection of my phone to my pc, and why cmd 'adb devices' shows my phone as being offline. The most promising set of instructions i have seen is here:

[android-developers] STK Menu

2011-04-10 Thread KamalBudhabhatti
Dear Developers, I have an Android application which works fine. I want to invoke the SIM Menus that are on the SIM card using STK options. I tried to look around on the web, and I am not able to get any good information on it. I saw some example at

[android-developers] Bluetooth in Android

2011-04-10 Thread Vishal Rajpal
Hello Everyone.. I want to connect another android device using bluetooth. I have tried but was nt able to.. Can anyone help 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] Enquiry

2011-04-10 Thread Waseem Akram
Dear Frnz, I am Waseem Akram. I had completed my B.E (Electronics Communication ) . I am interested to learn Android . What is the procedure from where I have to start . Is there any tutorial available. Is it mandatory to know any other languages. Please Clarify . Thanks Regards,

[android-developers] 3D Image

2011-04-10 Thread khaled anaqwa
any one have a good tutorial how to create 3D image form datarow -- 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] Anyone feel like helping a poor pale student?

2011-04-10 Thread Tez
Hey everyone, I'm new to these forums, just drifted over from dreamincode. I'm writing my undergraduate dissertation on programming for the Android platform using the Eclipse IDE and was wondering if anyone would be happy to fill out a questionnaire for me to help out? Many thanks in advance!

[android-developers] Re: When to set android:anyDensity to what value?

2011-04-10 Thread MarcoAndroid
So I should set it to true even when my app doesn't include resources to accommodate any screen density (suppose I'm lazy so I don't create any size- or density specific resources)? I'm wondering this because taken from:

[android-developers] Using Google Calendar API

2011-04-10 Thread New Developer
anyone solved the use of Google Calendar API ? tried the method from http://jimblackler.net/blog/?p=151 content://calendar/calendars andcontent://com.android.calendar/calendars I get the ERROR Failed to find provider info for com.android.calendar when I try the google gdata api's

[android-developers] Re: When to set android:anyDensity to what value?

2011-04-10 Thread MarcoAndroid
In short: am I always safe with anyDensity=true as long as I use dp and sp as I read in Table 2 here: http://developer.android.com/guide/practices/screens_support.html: 'That is, as long as your application uses density-independent units (dp) for screen layout sizes, then it will perform

Re: [android-developers] Re: When to set android:anyDensity to what value?

2011-04-10 Thread Kostya Vasilyev
There are really two related things here: 1 - Setting anyDensity to true or minSdk/targetSdk to 4 or above means that your application sees the real screen size/resolution/density at runtime. Android will scale your images as needed when they are loaded, so you won't get missing resource

Re: [android-developers] Bluetooth in Android

2011-04-10 Thread Me
Dear Vishal Rajpal ; *Android BlueTooth example on developer site is an good example to connect and discover devices * *using both discovering and pairing method .* *Tell me where you are facing problem ?* * * On Sat, Apr 9, 2011 at 5:55 PM, Vishal Rajpal

Re: [android-developers] Bluetooth in Android

2011-04-10 Thread Kristopher Micinski
Another device like another phone? How did you do it? You have to do discovery and pairing first. And yes, BT chat example does illustrate things pretty well. Kris On Sat, Apr 9, 2011 at 9:55 AM, Vishal Rajpal vishalrajpal.ap...@gmail.comwrote: Hello Everyone.. I want to connect another

[android-developers] Re: Widgets: Lanscape vs Portrait

2011-04-10 Thread Jake Colman
KV == Kostya Vasilyev kmans...@gmail.com writes: KV [ below ] KV 09.04.2011 0:12, Jake Colman пишет: KV == Kostya Vasilyevkmans...@gmail.com writes: KV 08.04.2011 19:25, Jake Colman пишет: I have a 2x1 widget with two textviews, aligned top and bottom to the

[android-developers] Re: LVL Retry Count

2011-04-10 Thread jtoolsdev
They need to provide several example Policy source files for different setups. The default has some disadvantages. It always shows activating when the app was run rather than any cached policy. Some of my customers complained about it. Other developers have modified their policy file for more

Re: [android-developers] Re: Widgets: Lanscape vs Portrait

2011-04-10 Thread Kostya Vasilyev
11.04.2011 0:02, Jake Colman пишет: Kostya, This worked perfectly. I know :) Thanks! Welcome ! ...Jake -- Kostya Vasilyev -- http://kmansoft.wordpress.com -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] MiFare Classic detection

2011-04-10 Thread androidom
Hi there, I used the sample code in my app to detect a Mifare Classic card. My resource file looks like resources xmlns:xliff=urn:oasis:names:tc:xliff:document:1.2 tech-list techandroid.nfc.tech.NfcA/tech techandroid.nfc.tech.NfcB/tech techandroid.nfc.tech.NfcF/tech

Re: [android-developers] Re: In-app billing problem

2011-04-10 Thread Kostya Vasilyev
Sebastian Ishihata, I can also confirm this, although my sample size is much smaller: - Moto Milestone, 2.1u1, test purchase for android.test.purchased never completes; Weird logcat messages: D/vending ( 1521): [1] BaseBuyPageActivity.onOrderResponse(): state: CART_PURCHASE response:

Re: [android-developers] Re: help: dont display Toast

2011-04-10 Thread TreKing
On Sun, Apr 10, 2011 at 10:55 AM, luiX_ lui...@gmail.com wrote: Any particular reason to use Asyntasks instead of threads? It simplifies running a background operation while interacting with the main thread (to show progress or do something on the main thread when the long running operation

  1   2   >