[android-developers] Activity behind a floating window does not update but receives touch events

2011-06-23 Thread jgaribay
Hi, I am launching a floating activity to be displayed on top of the screen when a call is placed or received and I want this activity do not interfere with the call, the user should be able to answer a call and hang up. With the following code I almost accomplish this, the only problem is that

[android-developers] Re: finishActivity() does not stop child activity

2011-03-26 Thread jgaribay
Hi, I have a similar issue and I am using the same approach: Service - ProxyActivity - Activity But the Activity I want to start and finish is an android activity started with ACTION_CALL from ProxyActivity and it has singleInstance launch mode in the manifest but it seems I can not change it.

[android-developers] TextView behavior with the same attributes is different in API 7 and 9 !?

2011-03-14 Thread jgaribay
Hi, I was debugging an Activity that was working fine (the view is displayed) using API 7 but not using API 9. This is a snippet of code simplified of what I am doing to reproduce the issue: public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);

[android-developers] Re: how to intercept javascript onclick=window.close()

2010-10-04 Thread jgaribay
, jgaribay juan.garibay.cervan...@gmail.com wrote: Hi, I am displaying web content in a WebView but I am having issues to identify when the user presses a cancel button which should close the current window. The cancel button is defined as follows in the page source code: input value

[android-developers] how to intercept javascript onclick=window.close()

2010-10-03 Thread jgaribay
Hi, I am displaying web content in a WebView but I am having issues to identify when the user presses a cancel button which should close the current window. The cancel button is defined as follows in the page source code: input value=Cancel name=cancel type=button onclick=window.close(); /