[android-developers] Creating a custom popupWindow with selective touch areas

2012-03-14 Thread tikky
All, I am trying to create a popup window that can have selective touch areas. Basically the popup window will act as an overlay on top my activity layout, and will consume touch events in certain areas while pass the touch events down to the underlaying activity when touched on the remainder of

[android-developers] Fixed widgets

2011-03-29 Thread tikky
Hello, I was wondering if it is possible to create widgets that cannot be moved to different locations on screen manually by dragging it? Or some kind of permanent widget? Any information on this is greatly appreciated. Thanks -- You received this message because you are subscribed to the

[android-developers] Filter in ExpandableListView

2010-03-18 Thread tikky
Hi, I have an ExpandableListView with several groups and each group contains several children. I want to make this list searchable, just like a regular list view. I have a SimpleCursorTreeAdapter (mAdapter) for this expandlable list. I tried to use the built in list filter using:

[android-developers] Problem with expandable list view

2010-01-29 Thread tikky
I have an expandable list view, where the child view is a custom layout consisting of 2 text views within a RelativeLayout as follows: RelativeLayout . TextView xmlns:android=http://schemas.android.com/apk/res/android; android:id=@android:id/text1 android:layout_width=fill_parent

[android-developers] Help with Camera.Parameters.getFlashMode()

2010-01-19 Thread tikky
All, I am developing an app that uses the phone camera, and I want to set the Flash Mode, if flash exists. From documentation, it looks like I need to call Camera.Parameters.getFlashMode() and check if it returns null to determine if flash exists. Note: getFlashMode() is supported from API level 5

[android-developers] Display locally stored html webpage using webview

2010-01-14 Thread tikky
Hello, I have a locally stored webpage (html) under res/raw folder. The html is something like this: html body This is a test page br/br img src=test.gif/img /body /html There is an image that is referenced in this html page (test.gif) which is stored under

[android-developers] Re: Display locally stored html webpage using webview

2010-01-14 Thread tikky
Thanks Guitouille. In that case, what URL string do I give to webview's loadUrl(url) method? On Jan 14, 11:29 am, Guitouille guillaume.lardill...@gmail.com wrote: In fact your test.gif has to be in the assets folder in order to be visible. Guitouille On 14 jan, 16:42, tikky tiku

[android-developers] Re: Display locally stored html webpage using webview

2010-01-14 Thread tikky
. On Jan 14, 2:26 pm, tikky tiku...@gmail.com wrote: Thanks Guitouille. In that case, what URL string do I give to webview's loadUrl(url) method? On Jan 14, 11:29 am, Guitouille guillaume.lardill...@gmail.com wrote: In fact your test.gif has to be in the assets folder in order

[android-developers] Re: Display locally stored html webpage using webview

2010-01-14 Thread tikky
/img I tried the following too: img src=file://test.gif/img img src=file:///test.gif/img .. but nothing worked. On Jan 14, 2:26 pm, tikky tiku...@gmail.com wrote:  Thanks Guitouille. In that case, what URL string do I give to  webview's loadUrl(url) method?  On Jan 14, 11:29 am

[android-developers] Re: Display locally stored html webpage using webview

2010-01-14 Thread tikky
AssetManager and the web page  loads as expected, but the image file is still not displayed.  Is this the correct syntax? img src=test.gif/img  I tried the following too:  img src=file://test.gif/img  img src=file:///test.gif/img  ..  but nothing worked.  On Jan 14, 2:26 pm, tikky

[android-developers] Re: Focus problem with dpad

2009-12-21 Thread tikky
On Dec 8, 11:07 am, tikky tiku...@gmail.com wrote: Hi, I have a a simple activity with  a list view. Each element of the list view contains a photo, text view and a button. I have an onClickListener() implemented for the button. When I touch the button, onClickListener gets called, which

[android-developers] Focus problem with dpad

2009-12-08 Thread tikky
Hi, I have a a simple activity with a list view. Each element of the list view contains a photo, text view and a button. I have an onClickListener() implemented for the button. When I touch the button, onClickListener gets called, which is what I want. But when I use the D-PAD, and press down

[android-developers] Re: Fullscreen dialog

2009-12-03 Thread tikky
at 8:33 AM, tikky tiku...@gmail.com wrote: I have a dialog with a list view in it and am wondering if there is a way in to create a dialog that appears like an activity? i.e. fullscreen and fix size? Is there is any style that can be applied to have this activity-like appearance? -- You

[android-developers] Fullscreen dialog

2009-11-30 Thread tikky
I have a dialog with a list view in it and am wondering if there is a way in to create a dialog that appears like an activity? i.e. fullscreen and fix size? Is there is any style that can be applied to have this activity-like appearance? -- You received this message because you are subscribed to

[android-developers] ServiceConnectionLeaked IntentReceiverLeaked error

2009-08-18 Thread tikky
Is ServiceConnectionLeaked really a leak? When I look at the android framework code, I see that the framework logs this error msg when an application does not unbind a service in onDestory(), but then goes ahead and unbinds the service internally. So I am not sure if this is a crtical error and