Gphone.pl, Android, Google, IPhone, Open Social » 2009-06-13

Wiadomości z dnia 2009-06-13

Sortuj wiadomości według: Nazwy | Daty | Losowo

File System Root '/' name has extra characters?!

First I found the problem, then I found this truly ancient post: [link] ...with no responses. To browse the file system from the top down I suppose I can simply hardcode the root as a single slash, but I would
Informacja: 2009-06-13
Czytaj: File System Root '/' name has extra characters?!

Cursor for service component?

Hello everybody In application there is Service running in background, and appl having private database, When appl runs in back ground with service. I want to retrieve Cursor for query on appl database. For content provider having the solution, i.e. getting cursor for Service too [ ContentResolver cr = getContentResolver();
Informacja: 2009-06-13
Czytaj: Cursor for service component?

Re: [android-developers] Change sdcard permission

2009/6/13 N V <nithi...@gmail.com> Most sdcards are formatted to be fat32 and fat32 doesn't support linux permission system, you can get round this by prefixing the command with sh. eg /bin/sh /sdcard/application
Informacja: 2009-06-13
Czytaj: Re: [android-developers] Change sdcard permission

Re: How to tell when application exits?

Could I suggest an update to documentation then? Do you guys need a bug report to be lodged to do this kind of thing? Does this also apply to services? The documentation there also states that the service will be sent a 'courtesy' stop notification... I think things could go quite badly if the code were to just stop in the
Informacja: 2009-06-13
Czytaj: Re: How to tell when application exits?

Google Data APIs Client Libraries

Has anyone had success using Google Data APIs Client Libraries. I can
Informacja: 2009-06-13
Czytaj: Google Data APIs Client Libraries

Re: [android-developers] Google Data APIs Client Libraries

I also tried using it... But according to one of the developers its not usable in android (or any other mob platform).... if u jus need a lil data from google then try this... This piece of code prints all methods in the class & invokes the static method getAccount... try { for (Method ele :
Informacja: 2009-06-13
Czytaj: Re: [android-developers] Google Data APIs Client Libraries

Re: [android-developers] Re: How to get root access of my android phone

2009/6/13 Joe Petruchi <petruchi.dr...@gmail.com> If you are talking about the HTC Magic, no idea, but it isn't going to be labelled the G2 when T-Mobile starts selling it, try looking about on the XDA forum.
Informacja: 2009-06-13
Czytaj: Re: [android-developers] Re: How to get root access of my android phone

Re: [android-developers] Re: Change sdcard permission

2009/6/13 Nithin Varamballi <nithi...@gmail.com> You don't need to set files executable to launch them, you can launch them indirectly via the sh binary.
Informacja: 2009-06-13
Czytaj: Re: [android-developers] Re: Change sdcard permission

how can i launch the intent to pick image from SD card?

Hi, Can you please tell me how can i launch the intent to pick image from SD card? Thanks.
Informacja: 2009-06-13
Czytaj: how can i launch the intent to pick image from SD card?

Re: fullscreen doesn't hide Status Bar in Android SDK 1.5 R2

i guess this group has grown too large to expect a response from the Android team..
Informacja: 2009-06-13
Czytaj: Re: fullscreen doesn't hide Status Bar in Android SDK 1.5 R2

Where is com.android.providers.googleapps??

Hi, I don't find package com.android.providers.googleap ps on my internal memory. I use cupcake emulator. Somebody help me....please....
Informacja: 2009-06-13
Czytaj: Where is com.android.providers.googleapps??

Scrollview and GestureDetector

I'm making sort of a book app. I have the text displayed as a textview in a scrollview: XML: <ScrollView android:id="@+id/chatview" android:orientation="vertical" android:layout_width="fill_par ent" android:layout_height="fill_pa rent"> <TextView
Informacja: 2009-06-13
Czytaj: Scrollview and GestureDetector

Cannot get Log.isLoggable working as documented

This is a very simple problem and I've searched to find that no one else seems to be having it, anyway... My code is something like: if (Log.isLoggable("mytag", Log.DEBUG)) { Log.d("mytag", "Logged at debug level"); The documentation says that by default logging is enabled at INFO level. This appears to be correct, since the above IF condition
Informacja: 2009-06-13
Czytaj: Cannot get Log.isLoggable working as documented

Manipulating WebKit Form-Data

Hi, is there any way to manipulate form-data of a specific website (for example fill in information in a login-field and hit the login- button). Thank you
Informacja: 2009-06-13
Czytaj: Manipulating WebKit Form-Data

Re: [android-developers] Where is com.android.providers.googleapps??

There is no such package in the SDK.
Informacja: 2009-06-13
Czytaj: Re: [android-developers] Where is com.android.providers.googleapps??

Re: [android-developers] Manipulating WebKit Form-Data

Not that I am aware of.
Informacja: 2009-06-13
Czytaj: Re: [android-developers] Manipulating WebKit Form-Data

Re: Manipulating WebKit Form-Data

sadly... thank you
Informacja: 2009-06-13
Czytaj: Re: Manipulating WebKit Form-Data

Re: [android-developers] Re: Where is com.android.providers.googleapps??

I am interpreting this to mean "how do I access emails saved on the device". Option #1: Write your own email client and convince users to use it, as then it is your own database. Option #2: Work with the K9 team to integrate whatever you are looking to do with their email client. Option #3: Submit patches to the Android open source project to expose
Informacja: 2009-06-13
Czytaj: Re: [android-developers] Re: Where is com.android.providers.googleapps??

Re: [android-developers] Re: How to tell when application exits?

Either a bug report ([link]) or a patch would help increase the odds that the change gets made. There is no onTerminate() in services. There is onDestroy(), which is called using the same rules as onDestroy() with activities -- it probably gets called, but it cannot be assured. The only time your process will be terminated forcefully, AFAIK, is if the
Informacja: 2009-06-13
Czytaj: Re: [android-developers] Re: How to tell when application exits?

Re: [android-developers] Cursor for service component?

Use SQLiteDatabase.
Informacja: 2009-06-13
Czytaj: Re: [android-developers] Cursor for service component?

Re: [android-developers] Re: Google Data APIs Client Libraries

Hi, Activity A is running and i start Activity B from A then start one more new Activity C from B.. Now I want to launch Activity A from C.. What should be right procedure..... On Sat, Jun 13, 2009 at 12:33 PM, Sujay Krishna Suresh < -- Thank & Regards Peeyush Varshney
Informacja: 2009-06-13
Czytaj: Re: [android-developers] Re: Google Data APIs Client Libraries

RE: [android-developers] Re: LooperThread

What I mean by subsequent runs is when the AlarmManager starts the service after the first time. Right now, the app I
Informacja: 2009-06-13
Czytaj: RE: [android-developers] Re: LooperThread

Re: In need of a developer...

You might want to consider figuring this out for yourself. It's not that difficult if you use the tutorial book ($35) written by Mark Murphy at [link] - tutorial 17 did it for me... I wrote a similar program without much prior knowledge myself in about three days of study. Your mileage may vary.
Informacja: 2009-06-13
Czytaj: Re: In need of a developer...

Re: [android-developers] How to force hierarchy change to PreferenceActivity?

The preference framework will refresh the UI when a preference has a UI-visible attribute changed, for example the summary. So, you can just do myPreference.setSummary(myPref erence.getValue()) (assuming you want to show the selected item as the summary of the preference).
Informacja: 2009-06-13
Czytaj: Re: [android-developers] How to force hierarchy change to PreferenceActivity?

Checking the Hardware (Phone model) programatically

Hi All, I was wondering if there is a way of finding the hardware on which the Android software stack is currently running. Specifically I'd be interested to get the processor on which the application is being run so that I can adjust the intensity of calculations performed. Thanks in advance! Gavin
Informacja: 2009-06-13
Czytaj: Checking the Hardware (Phone model) programatically

Re: Getting my app in the featured section

As an aside - when I searched Apps with 'scan' your app did not appear, when I searched 'pdf' it was on the list. Good luck with your application and with Google. intbt
Informacja: 2009-06-13
Czytaj: Re: Getting my app in the featured section

Email App and IM App on cupcake branch

Hi, I download and compile cupcake branch. But the Email App and IM App (not Gmail and GTalk) is not installed on the emulator. Can you please tell me how to install Email App and IM app? Thank you.
Informacja: 2009-06-13
Czytaj: Email App and IM App on cupcake branch

Line Items for 2009-06-12

Blaming Twitter for the # twitpocalypse is like blaming the Gregorian calendar for Y2K. # The # Twitpocalypse Explained, in layman's terms http://is.gd/10fG8 # Twidroid seems to have survived the # twitpocalypse
Informacja: 2009-06-13
Czytaj: Line Items for 2009-06-12

Google Android And The Upcoming Sony Walkman Product Strategy

Engadget recently picked up on a story about Google
Informacja: 2009-06-13
Czytaj: Google Android And The Upcoming Sony Walkman Product Strategy

Solaris in my pocket? Why?

Sun is a company whose software strategy puzzles me. On the one hand some outstanding software ideas come from Sun, for example Java. On the other hand Sun
Informacja: 2009-06-13
Czytaj: Solaris in my pocket? Why?
Strony: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 »

Stronę wygenerowano w 0.1 sek. | Forum, programowanie | Gphone, platforma Google Android | Gabinet stomatologiczny Wrocław