[android-developers] Does Android4.0 provides classes that support retrieve documents

2011-12-17 Thread Cimo Huang
Hi, Android Developers Till now, android provide packages like android.media and android MediaStore to query media files (audio, video and image ) directory by the android API. Then is there any api support query manage store document files like excel, ppt, pdf, like what it provides about

[android-developers] Re: Activity can not receive the same intent second time while the app which this activity belongs to launched from another app.

2011-11-18 Thread Cimo Huang
with the phone shut off.. On Nov 16, 9:18 pm, Cimo Huang cimo8...@gmail.com wrote: Dear Android Developers: I got an issue thatactivitycannotreceivethesameintentsecond time while the app which thisactivitybelongs to  launched from another app. I have an app2 launched from

[android-developers] Activity can not receive the same intent second time while the app which this activity belongs to launched from another app.

2011-11-16 Thread Cimo Huang
Dear Android Developers: I got an issue that activity can not receive the same intent second time while the app which this activity belongs to launched from another app. I have an app2 launched from app1. Then in app1, start activity B from the main activity A with startActivity The launch

[android-developers] Is there any API to make AlertDialog.builder Dialog bright when click it

2011-08-08 Thread Cimo Huang
I create an AlertDialog as below: AlertDialog.Builder builder = new AlertDialog.Builder(this); if (titleId 0) { builder.setTitle(titleId); } ... ... ... dialog = builder.create(); What I want now is make the title bright when click it. Is there any API realize it? -- You