2

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.

enter image description here

Community
  • 1
  • 1
VKSingh
  • 452
  • 6
  • 17

4 Answers4

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

Just set the targetSdkVersion to 14 or above

KrauseFx
  • 11,551
  • 7
  • 46
  • 53
0

Put following code in your manifest file.Its working for me.

 <uses-sdk
        android:minSdkVersion="11"
         />
vijay
  • 1,475
  • 2
  • 16
  • 26