[android-developers] Missing extract UI on text input when IME shown manually without EditText widget

2016-07-20 Thread 'Matt Perry' via Android Developers
I have a bug where the extract UI - where the text a user types is displayed while in full-screen IME mode - isn't actually showing any user input. You can see a screenshot on our bug tracker here: https://github.com/flutter/flutter/issues/4899 . Any text you type while in landscape

[android-developers] why zygote process name change to main in Lollipop, Is it a bug?

2015-01-03 Thread perry shan
hi, I notice that the zygote process name change to main Lollipop , but in KitKat and before, the zygote process name is zygote. in Lollipop: $ adb shell ps | grep -i zygote root 376 1 1492064 67316 S zygote $ adb shell cat /proc/376/stat 376 (main) R 1 376 0 0

[android-developers] Re: rawQuery selection args?

2012-08-23 Thread Christopher Perry
Well, it's broken. I fed it a String like this My random \ string with weird \' chars and it blew up. On Tuesday, December 21, 2010 11:34:32 AM UTC-8, Tobiah wrote: I am unable to find an example of how to use the 'selection args' in the second argument to rawQuery: public Cursor rawQuery

Re: [android-developers] rawQuery selection args?

2012-08-23 Thread Christopher Perry
Well, it's broken. I fed it a String like this My random \ string with weird \' chars and it blew up. On Tuesday, December 21, 2010 11:38:00 AM UTC-8, Mark Murphy wrote: String[] args={somebaldingguy}; rawQuery(SELECT _id, title FROM books WHERE author=?, args); The string array elements

[android-developers] How to set the bitmap to Transparent

2012-04-02 Thread Perry
hi, I used following method to create a canvas. temp = Bitmap.createBitmap(thisWidth, thisHeight, Config.ARGB_); Canvas thisCanvas = new Canvas(temp); I don't know why the canvas has a black background. How to create a Transparent background for use? Thanks a lot! -- You received this

Re: [android-developers] Re: How to set the bitmap to Transparent

2012-04-02 Thread Perry
or foreground of an ImageView? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Mon, Apr 2, 2012 at 10:33 AM, Perry perry...@gmail.com wrote: hi, thank you for help. but the background still black. On 4月3日, 上午12時05分, Justin Anderson magouyaw

[android-developers] how to make the apps is running in odex

2012-03-06 Thread Perry
hi all, Some apps are running in odex file (not apk file) after installation. Could anyone teach me how to do that? -- 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

[android-developers] Re: how to make the apps is running in odex

2012-03-06 Thread Perry
Could you give more hints how to do that? Is it related to Programming or Compiling? On 3月7日, 上午11時03分, Dianne Hackborn hack...@android.com wrote: All apps run from odex files, that is the final linked dex code that is run on the device. On Tue, Mar 6, 2012 at 6:10 PM, Perry perry

[android-developers] how to disable the enlarge

2012-01-01 Thread Perry
hi, I am using following method to create a bitmap and canvas. myBG = Bitmap.createBitmap(theScreenWidth, theuserScreenHeight, Config.ARGB_); Canvas myCanvas = new Canvas(myBG); After I draw something to myBG and use drawbitmap method to canvas. I found that the myBG be enlarged. Who can

[android-developers] Re: Working with VideoView without calling MediaPlayer.release()

2011-08-29 Thread Christopher Perry
I'm also having this issue, I'd like to see a resolution to this because my application relies heavily on video and the Android MediaPlayer doesn't work very well. I'm not sure what else to do at this point. On Aug 23, 1:23 am, Guilo guilo.gu...@gmail.com wrote: Hi ! Today, this

RE: [android-developers] Google Checkout Problem

2011-07-21 Thread Perry
that. On Wed, Jul 20, 2011 at 7:42 AM, Perry168 perry...@netvigator.com wrote: Hi all, Today, I login my google checkout. I found that it can't show all orders. Who has the same problem? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Global Plugin.

2010-12-16 Thread Ken Perry
I am trying to find out if there is a way to add a global WebKit plugin so that any programming using the WebView will have my plugin in attached. The plugin will need access to the NP Navigation and dom. I looked at the example under development Samples for browser plugin but that only

RE: [android-developers] Global Plugin.

2010-12-16 Thread Ken Perry
Murphy Sent: Thursday, December 16, 2010 8:18 AM To: android-developers@googlegroups.com Subject: Re: [android-developers] Global Plugin. On Thu, Dec 16, 2010 at 7:46 AM, Ken Perry kpe...@blinksoft.com wrote: I am trying to find out if there is a way to add a global WebKit plugin so that any

[android-developers] Javascript, WebView, and arrow keys.

2010-09-09 Thread Ken Perry
The following question has to do with Froyo 2.2 sdk 8 running on an emulator. I am injecting Javascript into a web page and in the WebView activity I get 19, 20, 21, and 22 for key codes for arrow keys. At the Javascript level all four arrow key values in a keydown handler come in as zero.

RE: [android-developers] Re: How to debug web page on device?

2010-09-09 Thread Ken Perry
I think you're doing it the same way I am. I use addJavascriptInterface to add logging class to any JavaScript I write. Then I can use the Android Java log class to write to the log cat. I tag the logs with the keyword javascript so I get a nice neat list of whatever I want to see. Ken

[android-developers] Having problems referencing a library project from an application

2010-08-07 Thread Christopher Perry
I've been trying to do this now for 2 whole days, and am about to give up. I followed the instructions here: http://developer.android.com/guide/developing/eclipse-adt.html but it is not working. I can see the library project is added to my application but I cannot reference anything in it. Also

[android-developers] Re: Android Library Project

2010-08-07 Thread Christopher Perry
I'm having this exact problem right now. Did you figure it out? On Jul 7, 11:58 am, Vladimir Lebedev-Schmidthof dair@gmail.com wrote: Hello Mark, I faced the same problem with attrs.xml in Library Project. Have you finally found the solution? On 23 май, 23:22, Mark Carter

[android-developers] Problem after implementing SQLiteOpenHelper

2010-07-01 Thread Christopher Perry
I have a ListActivity that uses a CursorAdapter to fill the rows in the view. I wrote a database helper class that gives me back results for common queries I make for my app, and it uses an SQLiteOpenHelper implementation I wrote to open the database. I use the open helper to open the database and

[android-developers] Changing entry activity causes app only to open from downloads page

2010-06-15 Thread Christopher Perry
I recently added an activity to one of my apps, and made it the starting activity for the application and published an update. The update worked perfectly with no problems on my N1, but I'm getting emails from users telling me that the only way they can open my app is from their Downloads page in

[android-developers] Re: TTS SMS API

2009-10-27 Thread Neil Perry
Bump? On Oct 12, 4:34 pm, Neil Perry npe...@gmail.com wrote: Hello there, We're looking on making an app that would interact with SMS's so it could be played via the TTS api. Is there any way we can input into the long press menu of a sms to call it to play the said message. Thanks Neil

[android-developers] TTS SMS API

2009-10-12 Thread Neil Perry
Hello there, We're looking on making an app that would interact with SMS's so it could be played via the TTS api. Is there any way we can input into the long press menu of a sms to call it to play the said message. Thanks Neil Perry --~--~-~--~~~---~--~~ You

[android-developers] Text to speech

2008-05-18 Thread Ken Perry
I have looked through the archives and have seen that some people were trying to get Free TTS to work with Android. I personally don't like free tts but with that said did anyone ever get it to work. If not has there been any more news about TTS being added to the Android SDK? I did search the