I want to remove bottom menu button and I want to disable only particular class not in the all class in ICS. How can I achieve this?. Thanks in Advance.
Asked
Active
Viewed 1,405 times
2
-
You mean disable in a particular `Activity`? Or you mean disable when the device is below ICS? – Siddharth Lele May 01 '13 at 09:42
-
i mean disable only in a single activity – VKSingh May 01 '13 at 09:43
-
just i want to remove not in disable state – VKSingh May 01 '13 at 09:49
-
Duplicate. http://stackoverflow.com/questions/16291640/how-to-hide-the-soft-key-bar-on-android-phone/16291705#16291705. Google and search in general are your friends. – MarsAtomic May 01 '13 at 10:04
4 Answers
1
Just set the targetSdkVersion to 14 or above
Blockquote it's work ok but bitmap too large error

kaje
- 28
- 4
0
Try this https://stackoverflow.com/a/11438245/527759 but use
menuKeyField.setBoolean(config, true);

Community
- 1
- 1

Eugene Popovich
- 3,343
- 2
- 30
- 33
0
Put following code in your manifest file.Its working for me.
<uses-sdk
android:minSdkVersion="11"
/>

vijay
- 1,475
- 2
- 16
- 26