Re: [android-developers] Suspended android developer account

2011-05-29 Thread A.TNG
Dear Mobejakt, I met a similar problem. I wrote an application and put it in Android Market. The user feedback are great and it makes me feel I would continue develop and create more feature to fulfill user's requirement. But 3-day before, I get Google's notification and they suspend my app in

[android-developers] Re: switching from one app to another

2011-05-29 Thread Doug
On May 26, 5:06 pm, bob b...@coolgroups.com wrote: I have an app that opens a web browser, but after awhile I want the app to switch from the web browser back to itself. Is there an easy way to do this? I agree with Justin and Mark, but I don't have any ethical qualms in sharing a solution

[android-developers] Re: Slow motion video

2011-05-29 Thread Doug
On May 27, 11:20 am, New Developer secur...@isscp.com wrote: Anyone got an idea how to implement slow motion ?  or at least slow down the playback of a video ? Android media components won't do this for you, sorry. Doug -- You received this message because you are subscribed to the Google

[android-developers] Re: Text scaling properly on two different mdpi devices (Evo, and Galaxy Tab 10.1)

2011-05-29 Thread Doug
On May 25, 11:49 am, Mike michaeldouglaskra...@gmail.com wrote: Is there way to do font scaling similar to the way you can assign percentages to a layout? LinearLayout does percentage-like calculations for its children when you're using the weight attribute on its childrens' layouts. Or force

Re: [android-developers] Re: switching from one app to another

2011-05-29 Thread Dianne Hackborn
This will also cause the browser to add new windows/tabs to the single task it maintains. Please don't do this kind of thing. :} On Sun, May 29, 2011 at 12:01 AM, Doug beafd...@gmail.com wrote: On May 26, 5:06 pm, bob b...@coolgroups.com wrote: I have an app that opens a web browser, but

[android-developers] Re: Career as an Andoid developer. Is there any point?

2011-05-29 Thread Doug
Hate to break up this tender moment, but I'd like to get back to the original statement: Additionally, Android, as it's currently designed, does not have legs. The process model and UI are both too restrictive to be extendable to the pads and other new paradigms of the future. Who would have

[android-developers] Regarding Flash Usage in Android App

2011-05-29 Thread yogendra G
Hi All, I need some flash concepts to be used in my app developing so please can any one tel how to implement in my app if its available in android 2.2 and above with sample codes or app...?? Hop For Positive reply. Thanx In Advance. Regards, Yogi... -- You received this message because you

[android-developers] Re: Very puzzling crash report from user

2011-05-29 Thread Zsolt Vasvari
I've now had 2 reports of this problem. The first user claims he doesn't use a custom ROM, stock Android 2.1. I haven't heard back from the 2nd user yet. But the problem is real. Which file should I be copying into my project? The problem is if I do that, it will probably break on Honeycomb

[android-developers] Re: Very puzzling crash report from user

2011-05-29 Thread Zsolt Vasvari
Actually, I think the problem is that the color attribute I am using textColorPrimaryInverseDisableOnly doesn't exists (or 0) on the Wildfire/Tattoo On May 29, 8:29 am, Mark Murphy mmur...@commonsware.com wrote: Based upon the exception, Android is failing to load R.drawable.btn_dropdown

[android-developers] Re: Gallery with Adapter witch is return layouts

2011-05-29 Thread Károly Holczhauser
Hi there! Yes, it is! But when I trying to return (in getView) my class (which is extended from a LinearLayout) I got child has already got parent, run removeAllView on parent. The problem is, when I try to get the parent I got NULLpointer exception... So, I don't know who am I able to upload

[android-developers] Re: Career as an Andoid developer. Is there any point?

2011-05-29 Thread Ali Chousein
Like any occupation, unless you're some sort of savant you need to spend about 2000 hours (a year) working at it to achieve basic competence, and 10,000 hours (five years) to become an expert.  If you're not prepared to spend that sort of time working at it, then find a different occupation.

Re: [android-developers] Re: Very puzzling crash report from user

2011-05-29 Thread Kostya Vasilyev
Speaking of list view selector highlight - the color would break not just on HC: the standard highlight is orange, while the Galaxy S uses a light blue and Xperia Arc - silver gray. And the button down image looks different between my Motorola Milestone (2.1), Galaxy S (2.2) and Xperia Arc (2.3).

[android-developers] Re: Very puzzling crash report from user

2011-05-29 Thread Zsolt Vasvari
I am 100% sure it's because the early Sense UI didn't define textColorPrimaryInverseDisableOnly, even though it was supposed to be standard from 1.6 on. I've now changed it to just textColorPrimaryInverse, I don't remember why I went with textColorPrimaryInverseDisableOnly in the first place.

[android-developers] Re: NFC send Photo

2011-05-29 Thread Zsolt Vasvari
So are you saying the NFC would not be good for a Bump-type comm between two devices? It just seems so much easier than pairing two Bluetooth devices and since Android doesn't even support peer-to-peert WIFI networking, that's completely out of the question. On May 29, 9:13 am, Bob Kerns

[android-developers] Re: Lifetime of static [instance] variables

2011-05-29 Thread Kostya Vasilyev
Replying back to the list. Most (all?) platforms' model is process == application (more or less). In Android, there really is no such thing as the application (there is, but it is useful to ignore it at first). Therefore, one should unlearn that equality between application and process The unit

[android-developers] Strategy to implelment various themes?

2011-05-29 Thread Zsolt Vasvari
Could somebody offer any pointters/best practicies to swap the LF of an app based on a user perference? -- 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

[android-developers] Cannot enable Bluetooth

2011-05-29 Thread khanh_qhi™
Hi everyone, I'm creating an simple chatter appllication on Android via Bluetooth. I use *mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();* but,* mBluetoothAdapter = null, *so I don't know how to eable * BluetoothAdapter*? --- Regards, Khanh. -- You received this message because you are

Re: [android-developers] Cannot enable Bluetooth

2011-05-29 Thread Jonas Petersson
Hi Khan, On 2011-05-29 12:22, khanh_qhi™ wrote: I'm creating an simple chatter appllication on Android via Bluetooth. I use *mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();* but,*mBluetoothAdapter = null, *so I don't know how to eable *BluetoothAdapter*? Tried this?

Re: [android-developers] Cannot enable Bluetooth

2011-05-29 Thread khanh_qhi™
Hi Jonas, I have tried this one, but it didn't solve this problem. Here is my use: mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter(); if (!mBluetoothAdapter.isEnabled()) { Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);

[android-developers] Re: Cannot enable Bluetooth

2011-05-29 Thread Zsolt Vasvari
I implemented a Tic-Tac-Toe app using Bluetooth No problems. On May 29, 6:32 pm, Jonas Petersson jonas.peters...@xms.se wrote: Hi Khan, On 2011-05-29 12:22, khanh_qhi wrote: I'm creating an simple chatter appllication on Android via Bluetooth. I use *mBluetoothAdapter =

Re: [android-developers] Re: Cannot enable Bluetooth

2011-05-29 Thread khanh_qhi™
Hi Zsolt, Could you send Tic-Tac-Toe source code for me to see how it work? Thank a lot! On Sun, May 29, 2011 at 6:08 PM, Zsolt Vasvari zvasv...@gmail.com wrote: I implemented a Tic-Tac-Toe app using Bluetooth No problems. On May 29, 6:32 pm, Jonas Petersson jonas.peters...@xms.se wrote:

Re: [android-developers] openvpn in android

2011-05-29 Thread Nikolay Elenkov
On Sun, May 29, 2011 at 2:25 PM, Sundi sundi...@gmail.com wrote: I am trying to enable openvpn http://openvpn.net/ in android xt5 , looking for some procedure and head start tutorials, If anyone has tried this before please point me to some working examples. You can't do this without

[android-developers] Re: Lifetime of static [instance] variables

2011-05-29 Thread Anirban Majumdar
I am so thankful to you kostya, for such an excellent and simple explanation. Lesson learnt. Thanks again. On 29 May 2011 15:13, Kostya Vasilyev kmans...@gmail.com wrote: Replying back to the list. Most (all?) platforms' model is process == application (more or less). In Android, there

[android-developers] Re: Lifetime of static [instance] variables

2011-05-29 Thread Anirban Majumdar
i just recalled i wanted one last thing clarified - in an android system, what's the relevance of the Task Manager? i was under the impression that if i were to terminate an application there, it also meant that its related process would end. Conversely, i believed that if the process related to

Re: [android-developers] Re: Lifetime of static [instance] variables

2011-05-29 Thread Mark Murphy
On Sun, May 29, 2011 at 7:44 AM, Anirban Majumdar anirvan.majum...@gmail.com wrote: in an android system, what's the relevance of the Task Manager? There is no task manager in Android. There is the recent tasks list, brought up by a long-press on the HOME button (Android 1.x and 2.x) or a

[android-developers] Re: Career as an Andoid developer. Is there any point?

2011-05-29 Thread DanH
Let me tell you something: When a company hires you to do an app (or your management in a large company asks for some new software function of any sort), nine times out of ten they don''t have the foggiest idea what they want you to do. Even if they have a 50-page spec, it'll be more concerned

[android-developers] Re: Career as an Andoid developer. Is there any point?

2011-05-29 Thread DanH
App Inventor is just COBOL warmed over. Nothing changes. Like COBOL, I'm sure that App Inventor has it's uses, but neither will eliminate the need for trained programmers. SQL was also touted as eliminating the need for programmers, and now it's developed into its own programming specialty. On

[android-developers] Re: Network operation every half sec.

2011-05-29 Thread Mahavir Jain
Anyone out there who had handled such type of scenarios previously? Regards, Mahavir On Sun, May 29, 2011 at 7:51 AM, Mahavir Jain vir.j...@gmail.com wrote: Hi, I want to make network operation in every half sec and depending on data, i want to update the ListView continuously. Following

[android-developers] Does new Google Music Beta support end user selection of songs via intents

2011-05-29 Thread dsurround
I have an application that uses ACTION_PICK to allow the user to pick a song. Once that song is picked, the application uses the cursor location and does another intent later on to show the NOW_PLAYING interface. The application worked fine until I installed Music Beta on my droid device. The

[android-developers] Re: Strategy to implelment various themes?

2011-05-29 Thread crios
You can read what theme the user has selected from preference and then set it before the setContentView() method with setTheme(). However you cannot change it on the fly in android, so you need to restart the app for the new theme to kick in. On May 29, 12:50 pm, Zsolt Vasvari zvasv...@gmail.com

[android-developers] ListView overscroll disable

2011-05-29 Thread crios
I might be asking in the wrong group, but maybe somebody has an idea... so here goes: how can I disable the list overscroll that Samsung has implemented on some terminals running Android, like Galaxy S? And it`s on the 2.2 build. Thanks -- You received this message because you are subscribed to

Re: [android-developers] Does new Google Music Beta support end user selection of songs via intents

2011-05-29 Thread Mark Murphy
Try MediaStore.Audio.Media.CONTENT_TYPE instead, which maps to vnd.android.cursor.dir/audio. The MIME type you are using is undocumented. On Sun, May 29, 2011 at 9:13 AM, dsurround dsurro...@gmail.com wrote: I have an application that uses ACTION_PICK to allow the user to pick a song.  Once

[android-developers] Re: Want to know about Jython for Monkey runner

2011-05-29 Thread Diego Torres Milano
You only need monkeyrunner to run monkeyrunner scripts. On May 25, 6:06 am, harry asir harryjoh...@gmail.com wrote: Hi, I am very new to monkey runner. Inorder to write code/scripts using monkey runner API, need Jython. I want to know whether Jython is opensource or licenced one. Also, need

Re: [android-developers] Cannot enable Bluetooth

2011-05-29 Thread khanh_qhi™
Hi everyone, What Andoird APIs level does Bluetooth support? I cannot enable Bluetooth, could someone instruct me to enable this? On Sun, May 29, 2011 at 5:32 PM, Jonas Petersson jonas.peters...@xms.sewrote: Hi Khan, On 2011-05-29 12:22, khanh_qhi™ wrote: I'm creating an simple chatter

Re: [android-developers] Cannot enable Bluetooth

2011-05-29 Thread Jonas Petersson
Hi again Kahn, On 2011-05-29 16:24, khanh_qhi™ wrote: What Andoird APIs level does Bluetooth support? You'll need at least 2.0 for SDK BT support (with a fair amount of effort you MAY be able to enable it in 1.x, but for that you are in the wrong group). I cannot enable Bluetooth, could

Re: [android-developers] ListView overscroll disable

2011-05-29 Thread Marcin Orlowski
On 29 May 2011 15:28, crios crios8...@gmail.com wrote: I might be asking in the wrong group, but maybe somebody has an idea... so here goes: how can I disable the list overscroll that Samsung has implemented on some terminals running Android, like Galaxy S? And it`s on the 2.2 build. In

Re: [android-developers] Cannot enable Bluetooth

2011-05-29 Thread Kristopher Micinski
Did you make sure you got the right permissions? What is the error (check your logcat after the force close, or catch the exception in the debugger.) On May 29, 2011 10:41 AM, Jonas Petersson jonas.peters...@xms.se wrote: Hi again Kahn, On 2011-05-29 16:24, khanh_qhi™ wrote: What Andoird

[android-developers] Faster screen orientation change for fragments

2011-05-29 Thread Roman Mazur
Android activities have a pair of methods onRetainNonConfigurationInstance()/getLastNonConfigurationInstance() for keeping objects expensive for load during configuration changes. What should be a nice behavior for fragments in such case? Is setRetainInstance() a solution? What about usage of

[android-developers] android gps error on mobile when touch screen to send the lat and long

2011-05-29 Thread ingy abbas
Here is the error i got when i run my android code contains two activities . enter code here 05-29 19:23:42.131: ERROR/libgps(180): onUnsol: cmd 0x04 plen 57 05-29 19:23:42.131: ERROR/libgps(180): oem_unsol_gps_measurement: num_sv 3 05-29 19:23:42.131: ERROR/libgps(180):

[android-developers] Intent fails to grab image on certain devices

2011-05-29 Thread neuromit
In my application I want to let users pick a custom image. Currently I'm using the following code to do this: http://paste2.org/p/1442508 (also pasted below). It works great on most phones but a few users have reported it isn't working on their phones. Also this also only works using the default

[android-developers] Ang.: Accelerometer frequency

2011-05-29 Thread Dag Rende
Hi, I made some more tests on my Nexus S with OS 2.3.4. Sensor reading period averages for different sensor delays. Sensor.TYPE_GYROSCOPE - SENSOR_DELAY_NORMAL 9.2ms - SENSOR_DELAY_UI 9.2ms - SENSOR_DELAY_GAME 9.2ms - SENSOR_DELAY_FASTEST 1.15ms Sensor.TYPE_ACCELEROMETER -

Re: [android-developers] Intent fails to grab image on certain devices

2011-05-29 Thread Mark Murphy
Write your own image selector using the MediaStore content provider. On Sun, May 29, 2011 at 2:26 PM, neuromit stuart.lay...@gmail.com wrote: In my application I want to let users pick a custom image. Currently I'm using the following code to do this: http://paste2.org/p/1442508 (also pasted

Re: [android-developers] Regarding Flash Usage in Android App

2011-05-29 Thread TreKing
On Sun, May 29, 2011 at 3:09 AM, yogendra G yogi2...@gmail.com wrote: I need some flash concepts to be used in my app developing so please can any one tel how to implement in my app if its available in android 2.2 and above with sample codes or app...??

[android-developers] Re: Intent fails to grab image on certain devices

2011-05-29 Thread neuromit
hmm... so I take it there isn't a simpler way than that. On May 29, 2:42 pm, Mark Murphy mmur...@commonsware.com wrote: Write your own image selector using the MediaStore content provider. On Sun, May 29, 2011 at 2:26 PM, neuromit stuart.lay...@gmail.com wrote: In my application I

Re: [android-developers] Re: Intent fails to grab image on certain devices

2011-05-29 Thread Mark Murphy
On Sun, May 29, 2011 at 3:27 PM, neuromit stuart.lay...@gmail.com wrote: hmm... so I take it there isn't a simpler way than that. You are welcome to recommend to users that they install some third-party application that supports ACTION_GET_CONTENT for images. Otherwise, at best, the default

[android-developers] Re: Intent fails to grab image on certain devices

2011-05-29 Thread neuromit
That's actually not a bad idea, i wonder if anyone has a recommendation On May 29, 3:31 pm, Mark Murphy mmur...@commonsware.com wrote: On Sun, May 29, 2011 at 3:27 PM, neuromit stuart.lay...@gmail.com wrote: hmm... so I take it there isn't a simpler way than that. You are welcome to recommend

[android-developers] Re: android gps error on mobile when touch screen to send the lat and long

2011-05-29 Thread ingy abbas
Androiders any help please it is not hard On May 29, 7:46 pm, ingy abbas ingy.abba...@gmail.com wrote: Here is the error i got when i run my android code contains two activities .      enter code here      05-29 19:23:42.131: ERROR/libgps(180): onUnsol: cmd 0x04 plen 57     05-29

[android-developers] Three-level ExpandableListView possible?

2011-05-29 Thread Dominik Erbsland
I was wondering if there is a way to make a three-level ExpandableListView? I successfully made a two-level ExpandableListView with the help of a tutorial (http://developer.android.com/resources/samples/ApiDemos/src/ com/example/android/apis/view/ExpandableList1.html) But what I want to do is to

[android-developers] Re: EditText stops displaying characters as I'm typing?

2011-05-29 Thread Eric Carman
I have run into this as well. The edit text will accept entry without issue, then it just stops displaying the text entered, but it is there because the getText will find it. EditText android:id=@+id/inputText android:layout_width=fill_parent

[android-developers] HierarchyViewer on Nexus 1 HowTo

2011-05-29 Thread Julius Spencer
Hi, Does anyone know of a HowTo for getting HierarchyViewer going on a Nexus 1? So far I have unlocked the bootloader and rooted the device. From what I understand I next need to find a ROM which is suitable. (I'm still getting Unable to debug device errors) (I was told at IO that this is a

Re: [android-developers] Three-level ExpandableListView possible?

2011-05-29 Thread TreKing
On Sun, May 29, 2011 at 3:14 PM, Dominik Erbsland derbsl...@gmail.comwrote: Any way how I could do such a thing? There is nothing built-in for this. You'd have to write your own based on the existing implementation. Or use 3 ListViews. Or a ListView and an ExpandableListview.

[android-developers] Gallery question: loading the current image from a context menu to wallpaper

2011-05-29 Thread Spooky
I'm looking at the Gallery example from the Android-sdk samples (android-7/ApiDemos/src//view/Gallery1.java), and am trying to load the currently-displayed image, from the long-press context menu, as wallpaper. In that example, I have the index number within the array of R.drawable.filename

[android-developers] facebook

2011-05-29 Thread bob
I've been trying to learn how to integrate facebook stuff here: http://developers.facebook.com/docs/guides/mobile/#android I've got this code: package com.greatapp; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import com.facebook.android.*; import

[android-developers] post on wall

2011-05-29 Thread bob
I have the following code that posts a message on a facebook wall: package com.greatapp; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.os.Bundle; import com.facebook.android.*; import com.facebook.android.Facebook.*; public class hmm

Re: [android-developers] post on wall

2011-05-29 Thread Kristopher Micinski
Did you debug it on the other phone and set a breakpoint to tell you what went wrong / check the logcat? Kris On Sun, May 29, 2011 at 9:35 PM, bob b...@coolgroups.com wrote: I have the following code that posts a message on a facebook wall: package com.greatapp; import

[android-developers] Sample App with Bluetooth

2011-05-29 Thread khanh_qhi™
Hi, Anyone has sample application with bluetooth? can you send it to me to read more about how to use bluetooth? -- Regards, Khanh. -- 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: EditText stops displaying characters as I'm typing?

2011-05-29 Thread Zsolt Vasvari
Simply question: Does the problem happen if you remove your editor action listener? On May 30, 4:21 am, Eric Carman ewcarma...@gmail.com wrote: I have run into this as well. The edit text will accept entry without issue, then it just stops displaying the text entered, but it is there because

[android-developers] Re: NFC send Photo

2011-05-29 Thread Bob Kerns
Android does support peer-to-peer wifi network, what exactly are you talking about? I suspect you mean something somewhat different. Ad hoc access points? You wouldn't want to do that anyway -- it would kill the user's active WiFi connection, and this isn't even remotely a legitimate

[android-developers] Re: NFC send Photo

2011-05-29 Thread Zsolt Vasvari
By peer-to-peer WIFI I meant that there is no router. I am no networking expert (as you can tell), so my terminology is probably off. An intermediary server in my case is not an option due to the sensitive nature of my custumers' financial data, so it needs to be some sort of peer-to-peer

Re: [android-developers] Re: NFC send Photo

2011-05-29 Thread Nikolay Elenkov
On Mon, May 30, 2011 at 11:41 AM, Zsolt Vasvari zvasv...@gmail.com wrote: I wonder if those stickers Google promised to retrofit phones for Google Wallet would be usuable for general purpose NFC applications. Most probably not. A sticker is just an NFC chip that you can glue to your phone or

[android-developers] Re: NFC send Photo

2011-05-29 Thread Zsolt Vasvari
I thought I've read somewhere that the sticker would communicate with the phone via Bluetooth. I guess that cannot be right as it would need a power source. On May 30, 11:35 am, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Mon, May 30, 2011 at 11:41 AM, Zsolt Vasvari zvasv...@gmail.com

[android-developers] Re: NFC send Photo

2011-05-29 Thread Bob Kerns
Don't worry about the terminology -- ad hoc wifi network is what you're looking for. I just wanted to figure out what you intended to say. Hmm, peer-to-peer and sensitive financial data has me a bit concerned. I don't advocate sending sensitive data, via servers or not, unencrypted. I hope

[android-developers] How do you deal with skins clashing with your UI?

2011-05-29 Thread Zsolt Vasvari
I've run into a problem on Motoblur I am not exactly sure how to solve. I have a TextView that I want to look like a Spinner. I can set the theme to android:Widget.Spinner, no problem, but the TextView insits on messing around with the text color unless one is specifically set. So I am giving it

Re: [android-developers] Suspended android developer account

2011-05-29 Thread A.TNG
Guys, Any idea about this. What I want is just have a way to get Google's feedback. I just need to know what mistake I make and how can I make my app back to Android Market. Thanks you all. On Sun, May 29, 2011 at 2:31 PM, A.TNG tang.j...@gmail.com wrote: Dear Mobejakt, I met a similar

Re: [android-developers] Sample App with Bluetooth

2011-05-29 Thread Kristopher Micinski
There's a sample app in the SDK demos that works pretty well. BT isn't ultra stable, but works well enough if you're willing to take the time to pair, not expect to connect to a bunch of people, etc... On May 29, 2011 9:49 PM, khanh_qhi™ khanhqh20...@gmail.com wrote: Hi, Anyone has sample

Re: [android-developers] Sample App with Bluetooth

2011-05-29 Thread Indika Jayasinghe
Have you looked at the BluethoothChat app? http://developer.android.com/resources/samples/BluetoothChat/index.html On Sun, May 29, 2011 at 9:11 PM, Kristopher Micinski krismicin...@gmail.com wrote: There's a sample app in the SDK demos that works pretty well. BT isn't ultra stable, but works

[android-developers] Re: Suspended android developer account

2011-05-29 Thread Zsolt Vasvari
What's your app? On May 30, 11:58 am, A.TNG tang.j...@gmail.com wrote: Guys, Any idea about this. What I want is just have a way to get Google's feedback. I just need to know what mistake I make and how can I make my app back to Android Market. Thanks you all. On Sun, May 29, 2011 at

[android-developers] Re: Suspended android developer account

2011-05-29 Thread Zsolt Vasvari
I mean Google doesn't even punish blatant violators. (DocumentsToGo, hello?). So we have no idea why they would suspend you. On May 30, 11:58 am, A.TNG tang.j...@gmail.com wrote: Guys, Any idea about this. What I want is just have a way to get Google's feedback. I just need to know what

Re: [android-developers] Re: NFC send Photo

2011-05-29 Thread Nikolay Elenkov
On Mon, May 30, 2011 at 12:51 PM, Bob Kerns r...@acm.org wrote: Don't worry about the terminology -- ad hoc wifi network is what you're looking for. I just wanted to figure out what you intended to say. Hmm, peer-to-peer and sensitive financial data has me a bit concerned. I don't advocate

[android-developers] Re: NFC send Photo

2011-05-29 Thread Zsolt Vasvari
I have zero problems with using a servers, but my customers do. My app doesn't require an Internet permission and I intend it to keep it that way. By sensitive I dont' really mean to the point where if I steal a user's phone, I can drain his bank account empty. The worse that will happen is

[android-developers] Moving from free app to a paid model

2011-05-29 Thread Chris
Hi there, So I started working with Android a while back and have an app on the market (which I pertty much wrote for myself) that surprisingly got a great response, especially from abroad. I'm wondering if any of you ever had to take something from free/hobby-focused to a paid model. I'm

[android-developers] Re: Moving from free app to a paid model

2011-05-29 Thread Zsolt Vasvari
They will HAVE to download a new app. Each app is different and there is no way of making a previously free app paid. So you will need to change the package name and package name = app. Personally, I just appended a p after my non-paid app name to create the new package name. Coincidentally,

[android-developers] 回覆:facebook

2011-05-29 Thread warenix
no, you don't need to put app secret. authorization of your app will be done by official app installed. a pop up browser window will be shown. -- 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: NFC send Photo

2011-05-29 Thread Bob Kerns
Ah. Well, I'm going to assume you understand your customers (but suggest you always question whether you do! :=) Indeed, one should always keep one's security practices in conformity with the nature of what you are protecting. But I would certainly consider salary information to be sensitive

Re: [android-developers] Sample App with Bluetooth

2011-05-29 Thread khanh_qhi™
Hi Indika, I have tried BluetoothChat app at your link, but when I run this one I got the message from app: Bluetooth is not enable and finish app. I don't understand? Can you tell me more clear about this? On Mon, May 30, 2011 at 11:13 AM, Indika Jayasinghe ijaya...@gmail.comwrote: Have you

[android-developers] Re: NFC send Photo

2011-05-29 Thread Zsolt Vasvari
Well, I am just throwing idea out there. I haven't decided on NFC or that it would use encryption -- it might based on your feedback. I just won't be going the centralized server route, that's I am 100% certain about. Salary information is sensitive enough in the Western world, but if you ever

Re: [android-developers] Re: NFC send Photo

2011-05-29 Thread Bob Kerns
Note that using HTTPS does not give you end-to-end security in this scenario. The server is a man-in-the-middle. It's not a surreptitious one, but it is a man-in-the-middle nonetheless. The cert only serves to ensure it's the *right* man in the middle. So you'll still want to encrypt the

[android-developers] mp3 cutter

2011-05-29 Thread kampy
hi , i am thinking of desining a mp3 cutter on andrioid . i refered the pais and well prepared with an idea but i dint understand how to cut a mp3 song from start point to end point . anyone plz help me in getting the correct idea to develop this app . Thanks in advance ,. -- You received

[android-developers] Re: NFC send Photo

2011-05-29 Thread Bob Kerns
Yes, I understand it varies by culture. Here (US), it's exacerbated by a lot of factors with how we handle credit, jobs, etc., but we also have a moderate expectation of privacy. (The Europeans are stronger on it, at least in terms of what laws are on the books. I think our attitudes and our

Re: [android-developers] Sample App with Bluetooth

2011-05-29 Thread Kristopher Micinski
Are you running it on the emulator? That won't work. On May 30, 2011 1:08 AM, khanh_qhi™ khanhqh20...@gmail.com wrote: Hi Indika, I have tried BluetoothChat app at your link, but when I run this one I got the message from app: Bluetooth is not enable and finish app. I don't understand? Can you

[android-developers] Orientation problem

2011-05-29 Thread shanmu nathan
Hi guys, Good Morning I need help from yours. I develop one apps that time i met one problem. That is when ever i change that orientation my apps running from starting i dnt knw how to overcome that problem... I wrote separate xml's for portrait and landscape.. can anyone help me

Re: [android-developers] Orientation problem

2011-05-29 Thread kaushik p
are you trying to change the orientation when your app is running or at the beginning ? Please be more clear when asking questions On Mon, May 30, 2011 at 11:02 AM, shanmu nathan win.sha...@gmail.comwrote: Hi guys, Good Morning I need help from yours. I develop one apps that

[android-developers] Minor layout editor bug report

2011-05-29 Thread Zsolt Vasvari
Since I know Xavier reads this forum. Tested with all the latest and greatest: - Open a layout - Save as a different name - Edit the new layout's XML - Switch to the graphical viewer - The graphical viewer is still showing the old layout from before Save as - To get the new layout to display,

Re: [android-developers] mp3 cutter

2011-05-29 Thread kaushik p
Hi check out(CO ) this code and i think it will solve the problem http://code.google.com/p/ringdroid/source/checkout On Mon, May 30, 2011 at 10:53 AM, kampy narasimha1...@gmail.com wrote: hi , i am thinking of desining a mp3 cutter on andrioid . i refered the pais and well prepared with

Re: [android-developers] Re: Moving from free app to a paid model

2011-05-29 Thread kaushik p
Hi guys , can you just mention any place where all the details regarding the app hosting on android market is available ? And can we host paid android apps on our website without anyones permission ?? On Mon, May 30, 2011 at 9:58 AM, Zsolt Vasvari zvasv...@gmail.com wrote: They will HAVE to

Re: [android-developers] Orientation problem

2011-05-29 Thread shanmu nathan
ok Kaushik Pendurthi. Now what is my need is when i changing the orientation my apps is work continuesly not from the begining... Eg.. Normally i run that app in portrait then time picker shows current value for instance 12:10. i change some values like 21:12. If i changing the orientation the

[android-developers] Re: Moving from free app to a paid model

2011-05-29 Thread William Ferguson
You could offer an in-app purchase to upgrade users from your existing free app to whatever extra capability/content you believe they will pay for. That way you only have a single app, single source base. On May 30, 2:21 pm, Chris crehb...@gmail.com wrote: Hi there, So I started working with

Re: [android-developers] Sample App with Bluetooth

2011-05-29 Thread khanh_qhi™
Yeah, I run it on emulator and it won't work. On Mon, May 30, 2011 at 12:28 PM, Kristopher Micinski krismicin...@gmail.com wrote: Are you running it on the emulator? That won't work. On May 30, 2011 1:08 AM, khanh_qhi™ khanhqh20...@gmail.com wrote: Hi Indika, I have tried BluetoothChat