[android-developers] Re: ADB via USB

2008-11-16 Thread vovkab
I have ubuntu 8.10 and adb from sdk not working for me. I build sdk from source and then it see my phone. Try to copy adb from: http://ironphone.ru/wp-content/uploads/2008/11/adb.tar.gz to your sdk/tools folder. Don't forget to backup old adb file. If it's not working for you, try to build sdk

[android-developers] OnDraw in Listview

2009-03-17 Thread vovkab
Hello I made my own widget by extended listview. How to draw over list? When i draw in Overridden OnDraw method it's showing behind the list items, but i need to draw over. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gr

[android-developers] App Fault [SIGSEGV]

2009-10-27 Thread vovkab
Why this can happen? 950 DEBUG I *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** 950 DEBUG I Build fingerprint: 'generic/sdk/ generic/:1.6/DRC76/13852:eng/test-keys' 950 DEBUG I pid: 1095, tid: >>> .. <<<

[android-developers] Re: Keyboard, detect ALT Locked

2009-10-27 Thread vovkab
So, how to get it? On 19 окт, 05:57, Dianne Hackborn wrote: > The concept of the alt lock state only exists inside of the text object, as > it deals with editing being done on it. > > On Sun, Oct 18, 2009 at 6:57 AM, iron wrote: > > > Any ideas? > > -- > Dianne Hackborn > Android framework engi

[android-developers] Re: How to create/design downloadable skins packets for an application?

2009-10-27 Thread vovkab
[In Theme package] 1. set action for activity, for example: my.package.theme 2. add all files you need for this theme [In main app] // Create intent with your action: my.package.theme Intent intent = new Intent(); intent.setAction("my.package.theme"); // Get list of all installed package

[android-developers] Re: how to read the app package under /data/app

2009-10-27 Thread vovkab
Yes you can. Just read it with File apkfile = new File("/data/app/com.package.name"); On 27 окт, 11:43, Zhihong GUO wrote: > Hi All, > > I want to read out the binary content of the .apk packages installed in > /data/app. Not only the package information, but the content of the package > itselt

[android-developers] Re: How to create a ListView with different View/layout for each row

2009-10-27 Thread vovkab
You can find example in API Demos, List13.java On 27 окт, 13:03, Guo yt wrote: > It seems no body concerns on this ListView problem, but I'm lucky to > find the way out by myself : ) > Just check out the android source code for  the "contacts" > application, it seems they didn't use list view to

[android-developers] Re: HTC Hero (Sense UI) in emulator

2009-10-27 Thread vovkab
Here is solution (Russian): http://4pda.ru/forum/index.php?s=&showtopic=127892&view=findpost&p=3267124 On 28 окт, 00:36, Alexey wrote: > Is there a way to get HTC Hero system image for the emulator? > > Sense UI has quite some changes to activities like Contacts. So > intents to select Phone nu

[android-developers] Re: App Fault [SIGSEGV]

2009-10-27 Thread vovkab
Any ideas? On 27 ĎËÔ, 15:12, vovkab wrote: > Why this can happen? > > š 950 š š š š š š š š š DEBUG šI š*** *** *** *** *** *** *** *** *** > *** *** *** *** *** *** *** > š 950 š š š š š š š š š DEBUG šI šBuild fingerprint: 'generic/sdk/ > generic/:1.6/DRC76/13852:eng/tes

[android-developers] Re: how to read the app package under /data/app

2009-10-28 Thread vovkab
Seems like, you don't know what you need. Use WallpaperManager to get wallpapper. Why you need filename from package o_O? On 28 окт, 10:46, Zhihong GUO wrote: > Can you give some example code on how to get the file name of the current > wallpaper? > > Thanks >

[android-developers] Re: how to read the app package under /data/app

2009-10-29 Thread vovkab
em folder is looks like AlarmClock.apk, while the app under /data/app > fold is com..xxx.test.apk. > > 2009/10/28 vovkab > > > > > > > Seems like, you don't know what you need. > > > Use WallpaperManager to get wallpapper. Why you need filename

[android-developers] Re: Keyboard, detect ALT Locked

2009-10-29 Thread vovkab
Need help. On 27 окт, 15:17, vovkab wrote: > So, how to get it? > > On 19 окт, 05:57, Dianne Hackborn wrote: > > > > > The concept of the alt lock state only exists inside of the text object, as > > it deals with editing being done on it. > > > On Su

[android-developers] Re: Couldn't install Android 2.0 platform

2009-10-29 Thread vovkab
Do not install through eclipse. Close everything and run "android" command in your tools folder. On 29 окт, 01:01, sanczo_dev wrote: > I have the similar problem. But after download i get: "unzip failed: > Cannot run program "chmod": java.io.IOException: error=24, too many > files opened". I dow

[android-developers] Re: Keyboard, detect ALT Locked

2009-10-30 Thread vovkab
can do so with the text APIs.   > See:http://developer.android.com/reference/android/text/method/MetaKeyKey... > > <http://developer.android.com/reference/android/text/method/MetaKeyKey...>Other > than that, no lock state exists. > > 2009/10/29 vovkab > > Need help

[android-developers] Re: App Fault [SIGSEGV]

2009-10-30 Thread vovkab
Filled two bugs here: http://code.google.com/p/android/issues/detail?id=4417 On Oct 28, 8:59 pm, fadden wrote: > On Oct 27, 5:12 am, vovkab wrote: > > > Why this can happen? > > >   950                   DEBUG  I  *** *** *** *** *** *** *** *** *** > > *** *** **

[android-developers] Re: Keyboard, detect ALT Locked

2009-11-03 Thread vovkab
Any examples on how to detect locked state (shift or alt)? On 30 окт, 18:09, vovkab wrote: > Any examples on how to detect locked state (shift or alt)? > > On Oct 29, 10:04 pm, Dianne Hackborn wrote: > > > > > Again, there is no "lock state" in general.  The

[android-developers] Re: Keyboard, detect ALT Locked

2009-11-05 Thread vovkab
mbols instead special symbols. And this will be wrong. On 3 ноя, 20:41, Mark Murphy wrote: > vovkab wrote: > > Any examples on how to detect locked state (shift or alt)? > > You did not read Ms. Hackborn's response. I'll reprint the relevant > passage here: > > >

[android-developers] Turn off Gtalk

2009-07-11 Thread vovkab
Hello everyone Is any way to turn off gtalk (go offline) grammatically? --~--~-~--~~~---~--~~ 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.

[android-developers] Notification without expanded View

2009-05-14 Thread vovkab
Hi I want create just notification icon without text and expanded view. How to remove expanded view? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to and

[android-developers] Use drawable in TextView with SimpleAdapter

2009-06-18 Thread vovkab
Hello I want to use TextView as ListView item. Is any way to assign left drawable to TextView via SimpleAdapter? Thanks for any help. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To pos

[android-developers] Live Wallpapers. Cant get actions like android.wallpaper.tap

2010-02-10 Thread vovkab
Can't get actions like: # android.wallpaper.tap # android.home.drop I tried on Cube Wallpaper example by adding to CubeEngine class: @Override public Bundle onCommand(String action, int x, int y, int z, Bundle extras, boolean resultR

[android-developers] Re: Live Wallpapers. Cant get actions like android.wallpaper.tap

2010-02-11 Thread vovkab
Any ideas? -- 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+unsubscr...@googlegroups.com For more optio