[android-developers] How to get a reference to the PhoneWindow object

2010-02-23 Thread Nik Bhattacharya
I am trying to get a refrence to the android internal class PhoneWindow (android.policy.PhoneWindow) object from an application. I would like to call a method on it (specifically I would like to call getDecorView on PhoneWindow). How do I do this? Nik Bhattacharya -- You received this message

Re: [android-developers] How to get a reference to the PhoneWindow object

2010-02-23 Thread Dianne Hackborn
As you say, this is an internal class, so not appropriate to discuss on android-developers (which is for the SDK). Also this class is not part of the framework, so there is no way for you to directly reference it. On Tue, Feb 23, 2010 at 5:18 PM, Nik Bhattacharya nibha...@gmail.comwrote: I am