[android-developers] Re: How to forbid mouse/pointer, only use DPAD to navigate for TV UI (Android4.0.4)?

2013-05-08 Thread Susan
No one know? 在 2013年5月7日星期二UTC+8下午3时25分21秒,Susan写道: I developed an application for TV. But when I open it, there is always a mouse pointer on screen. I only want to navigate by remoter DPAD. So how to prevent mouse pointer to show? I notice some applications don't show pointer, but I

Re: [android-developers] Re: Frame Works

2013-05-08 Thread Michael Leung
I used jquery for mobile web in android for a while, that looks good for me. On Mon, May 6, 2013 at 6:50 PM, Alessandro Pellizzari a...@amiran.itwrote: Il Mon, 06 May 2013 14:09:43 +0530, Arun Kumar K ha scritto: Hi guys, Which frame work is best for android web appslike

Re: [android-developers] Downloading and install apk files from own server

2013-05-08 Thread Michael Leung
I have written a test program which is an apk only. I just placed the link of apk file in a html page. THen I go to the page and click the link. It works. But you have go -Settings - Security and check Unknown Sources. This allows the phone to install non-market app, On Sun, May 5, 2013 at 7:21

[android-developers] Re: Exported receiver does not require permission - what should I do with BOOT receivers

2013-05-08 Thread Piren
I believe that is just a wording issue... Permission/Uses-Permission are probably the same... Seems to me that if you declare something in Uses-Permission it also means it is in the Permissions list.. kinda hard to use something without allowing it :) On Tuesday, May 7, 2013 10:10:46 PM

[android-developers] Re: Need help with background loading

2013-05-08 Thread Piren
dude... i think you're not getting what i'm telling you. onLoadFinished() should call startActivity(new Intent(DialogActivity.class, context)); DialogActivity is NOT Activity B, its a whole NEW one that you dont have now. then the onCreate of DialogActivity just does

[android-developers] Re: video background

2013-05-08 Thread Piren
Why not just put it on a surface as usual and thats it? (that surface taking all the screen space and behind all other UI elements). On Tuesday, May 7, 2013 8:45:06 PM UTC+3, bob wrote: I have an Activity that is basically a form, and I would like to use a video background. It would

[android-developers] Force deep sleep using adb?

2013-05-08 Thread Larry Meadors
I have a problem in my app where it appears to lose its mind after waking from a deep sleep. I could use a WakeLock to prevent the deep sleep, but that feels like duct tape, so I'd prefer to find WHY it's failing after waking from deep sleep instead. Unfortunately, it seems to take quite a while

[android-developers] CustomHttpClient throwing timeout exception

2013-05-08 Thread Grontag
I have this CustomHttpClient class, which I found in the net: public class CustomHttpClient { public static final int HTTP_TIMEOUT=1; private static HttpClient mHttpClient; private static HttpClient getHttpClient(){ if(mHttpClient==null){ mHttpClient = new DefaultHttpClient(); final

[android-developers] form special effects

2013-05-08 Thread bob
So, I have a typical form interface, and I want to add some special effects to it. Basically, I want to have a water splashing particle effect when the user touches it. Anyone know the best way to do this? I'm not quite sure how to draw on top of all the other stuff... text fields and

[android-developers] Re: form special effects

2013-05-08 Thread Piren
Its not my area of expertise, but id capture ontouch events and dump the current view hierarchy to a bitmap. Then i'd perform the necessary manipulations on a GLView with that bitmap as the source. If you wish to allow the UI to update during those touches (like scroll a list while still seeing

Re: [android-developers] Switching between GLES2.0 and native Canvas rendering on the fly works in 2.3.6 but no in 4.2.2

2013-05-08 Thread bob
If you want to use Canvas and OpenGL at the same time, why not just do something like this? @Override protected void onCreate(Bundle icicle) { super.onCreate(icicle); mView = new BasicGLSurfaceView(getApplication()); setContentView(mView); Button

[android-developers] An other problem :p

2013-05-08 Thread asma rezgui
hello , does anyone know if there a solution for this issue? i want to put an autolink on a balloon overlay which let me get the data of the selected overlay . i must get the data when clicking on the link i need help pleaaase -- -- You received this message because you are subscribed to the

[android-developers] Re: An other problem :p

2013-05-08 Thread Piren
http://developer.android.com/reference/android/text/util/Linkify.html On Wednesday, May 8, 2013 5:41:55 PM UTC+3, ASMA wrote: hello , does anyone know if there a solution for this issue? i want to put an autolink on a balloon overlay which let me get the data of the selected overlay . i

Re: [android-developers] Re: An other problem :p

2013-05-08 Thread asma rezgui
please can you send me some samples using Linkify , i didn t understand how to use it 2013/5/8 Piren gpi...@gmail.com http://developer.android.com/reference/android/text/util/Linkify.html On Wednesday, May 8, 2013 5:41:55 PM UTC+3, ASMA wrote: hello , does anyone know if there a solution

Re: [android-developers] Re: An other problem :p

2013-05-08 Thread Michael Banzon
I don't know anything about linkify myself, but this seems promising and might help you a lot: http://bit.ly/12ViTCG On Wed, May 8, 2013 at 5:09 PM, asma rezgui asmarezgu...@gmail.com wrote: please can you send me some samples using Linkify , i didn t understand how to use it 2013/5/8 Piren

Re: [android-developers] Re: An other problem :p

2013-05-08 Thread asma rezgui
thank s a lot Michael 2013/5/8 Michael Banzon mich...@banzon.dk I don't know anything about linkify myself, but this seems promising and might help you a lot: http://bit.ly/12ViTCG On Wed, May 8, 2013 at 5:09 PM, asma rezgui asmarezgu...@gmail.com wrote: please can you send me some

[android-developers] LayoutInflater

2013-05-08 Thread bob
So, I have this layout… It starts out like this: ?xml version=1.0 encoding=utf-8? TableLayout xmlns:android=http://schemas.android.com/apk/res/android; android:layout_width=wrap_content android:layout_height=wrap_content android:layout_gravity=center_horizontal

Re: [android-developers] LayoutInflater

2013-05-08 Thread TreKing
On Wed, May 8, 2013 at 2:55 PM, bob b...@coolfone.comze.com wrote: However, I am now placing a video behind it, so I'm using addContentView instead. Showing your use of this method would help. Anyhow, it is no longer centered. It is left-justified. Is there an easy way to center this

[android-developers] Using App Cache - Without Trying to

2013-05-08 Thread Nathan
A user recently told me that my app worked better after he cleared the App Cache. By better, I mean that it might not freeze up requiring a battery pull after a few seconds of scrolling the screen. This is my nemesis, the Droid Razr Maxx HD, so I am following all leads, even if not

Re: [android-developers] Using App Cache - Without Trying to

2013-05-08 Thread TreKing
On Wed, May 8, 2013 at 3:21 PM, Nathan nathan.d.mel...@gmail.com wrote: I checked the code. I am not using the App Cache, at least on purpose. I believe some some components, like WebView and MapView, will automatically store things in the cache directory. I'd check your usage of those to

Re: [android-developers] LayoutInflater

2013-05-08 Thread Romain Guy
If you don't pass a parent parameter to the inflate() method the layout params are not inflated. On Wed, May 8, 2013 at 12:55 PM, bob b...@coolfone.comze.com wrote: So, I have this layout… It starts out like this: ?xml version=1.0 encoding=utf-8? TableLayout

[android-developers] Re: Google Play Services: UserRecoverableAuthException's intent doesn't start

2013-05-08 Thread Ryan Harter
Did you ever find a resolution for this? I'm seeing the same behavior in the dredit sample Drive SDK code, and my code based off of it. I create a pending intent out of the intent returned from getIntent(), but it doesn't launch. Here is my code, taken directly from the sample: try {

Re: [android-developers] Using App Cache - Without Trying to

2013-05-08 Thread Nathan
On Wednesday, May 8, 2013 1:27:47 PM UTC-7, TreKing wrote: On Wed, May 8, 2013 at 3:21 PM, Nathan nathan@gmail.com javascript: wrote: I checked the code. I am not using the App Cache, at least on purpose. I believe some some components, like WebView and MapView, will

Re: [android-developers] Using App Cache - Without Trying to

2013-05-08 Thread bob
Maybe if you try this option *android:installLocation=preferExternal* you might be able to find them on your SD Card? You can also call this once in awhile: *webview.clearCache(true);* Maybe at least call it on startup? Thanks. On Wednesday, May 8, 2013 4:11:58 PM UTC-5, Nathan wrote:

Re: [android-developers] Re: Barcode Generator

2013-05-08 Thread Michael Leung
http://zxing.appspot.com/generator/ from ZXing Project On Mon, May 6, 2013 at 5:07 PM, Piren gpi...@gmail.com wrote: Two easy steps: 1) Open Google.com (or Bing.com if you prefer) 2) Type android barcode generator and press enter. On Monday, May 6, 2013 8:51:22 AM UTC+3, sree wrote: Hi

Re: [android-developers] Re: Barcode Generator

2013-05-08 Thread Michael Leung
I have created a C# app for a client before I got a server installed bar font, then C# will create the image Example: http://www.codeproject.com/Articles/3888/C-Barcode-Generator-WebService On Thu, May 9, 2013 at 12:35 PM, Michael Leung michaelchi...@gmail.comwrote: