[android-developers] Re: Why I get the permission alert?

2010-04-08 Thread NewPa
Thanks Kumar, You are right, the alert only display when I install the app from SD card, after I publish it on Market and install it from Market, the alerts gone. On 4月7日, 下午2时28分, Kumar Bibek coomar@gmail.com wrote: As far as I know, these are only warnings. In the newer versions of

[android-developers] what's the IP address of development computer when dev phone try to connect it

2010-02-09 Thread NewPa
Hi, We all know if we use emulator connect to our development computer, should use 10.0.2.2 as the computer ip adress, but when I connect a dev phone with my computer, 10.0.2.2 does not work, I always get time out error, dev phone can not use 10.0.2.2 to access my computer, so what's the ip

[android-developers] Re: How can I know date changed? seems android.intent.action.DATE_CHANGED works not properly

2009-11-12 Thread NewPa
? this will broadcast every minutes, it's too frequent for me. On Nov 9, 9:02 pm, adamphillips12 adamphillip...@gmail.com wrote: http://code.google.com/p/android/issues/detail?id=2880can=4colspec=... Though you can use the AlarmManager to help you keep track of when 12am hits. On Nov 8, 1:32 pm, NewPa

[android-developers] How can I know date changed? seems android.intent.action.DATE_CHANGED works not properly

2009-11-07 Thread NewPa
Hi, One of my application need to know a new day is coming, that is, if the clock of phone changed from 23:59 to 00:00, my application will do some logic. I tried to use android.intent.action.DATE_CHANGED, but based on my test, this event only occured when i change the date mannually, I could

[android-developers] Re: My appwidget broken Donut when keyboard slide out/in

2009-11-06 Thread NewPa
: For the views that have ids, try setting android:saveEnabled=false so that they don't bundle up their state. j On Sat, Oct 31, 2009 at 8:00 PM, NewPa shiji...@gmail.com wrote: Hi String,     I use static var, i will test it. Hi Jeff,   Here is my layout file content. it seems will cause

[android-developers] Re: My appwidget broken Donut when keyboard slide out/in

2009-10-31 Thread NewPa
Hi String, I use static var, i will test it. Hi Jeff, Here is my layout file content. it seems will cause confliction with others: Thanks for your kindly help. ?xml version=1.0 encoding=UTF-8? LinearLayout android:id=@+id/LinearLayout01 android:layout_width=72dp

[android-developers] My appwidget broken Donut when keyboard slide out/in

2009-10-21 Thread NewPa
I developed an appwidget and published on market, it works very well on Cupcake. but after I upgrade my OS to Donut.Everytime when I slide out/in keyboard, I will got an error: The process android.process.acore has stopped unexpected.Please try again. I have to click force close, and wait

[android-developers] Can I get user's gmail address or handset SN to verify them?

2009-10-02 Thread NewPa
Hello, everyone. Here is the scenario: I plan to develop a application which can share ideas with others, this means user need submit their idea to my server through client apk. I don't like ask user to registration. Actually, Every gphone user have unique gmail address, unique IMEI,

[android-developers] Why onFocusChangeListner does NOT work

2009-10-02 Thread NewPa
I set focuse change listner for DatePicker, but after I leave the DatePicker, select option in RadioGroup, it seems DatePicker still have the focus and the listner never be invoked. why? here are some code: DatePicker dpk = (DatePicker) findViewById(R.id.DatePicker01);