diff options
author | Mitsuru Oshima <oshima@google.com> | 2009-06-03 11:19:12 -0700 |
---|---|---|
committer | Mitsuru Oshima <oshima@google.com> | 2009-06-03 16:28:10 -0700 |
commit | 9189cabb0b6c6c28232fe6f412b7ba7a37352a6a (patch) | |
tree | 6ddc6a8eb0158cba32cc6139b04c6b6eb9f0ba5f /test-runner/android | |
parent | eaeb663bcd7a82b654954b42663232cbd7bef7e7 (diff) | |
download | frameworks_base-9189cabb0b6c6c28232fe6f412b7ba7a37352a6a.zip frameworks_base-9189cabb0b6c6c28232fe6f412b7ba7a37352a6a.tar.gz frameworks_base-9189cabb0b6c6c28232fe6f412b7ba7a37352a6a.tar.bz2 |
* Moved supports-density tag under manifest
* Refactored Compatibility code
* Added CompatibilityInfo class
* Removed getApplicationScale from Context
* Added Resources#getCompatibilityInfo so that RootView can get the compatibility info w/o going through Context
* Expandable support
* Added expandable tag under manifest
* Old application w/o expandable is given the default screen size ([320, 480] x density).
* The non-expandable window is centered.
Diffstat (limited to 'test-runner/android')
-rw-r--r-- | test-runner/android/test/mock/MockContext.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test-runner/android/test/mock/MockContext.java b/test-runner/android/test/mock/MockContext.java index bd39a14..e733dd1 100644 --- a/test-runner/android/test/mock/MockContext.java +++ b/test-runner/android/test/mock/MockContext.java @@ -386,12 +386,4 @@ public class MockContext extends Context { throws PackageManager.NameNotFoundException { throw new UnsupportedOperationException(); } - - /** - * @hide - */ - @Override - public float getApplicationScale() { - throw new UnsupportedOperationException(); - } } |