Home
› Uncategorized
Example of Action Menu with grouped CheckBox.
Create /res/menu/activity_main.xml to define action menu.
The checked status will not be updated automatically. We can change it in onOptionsItemSelected() callback method.
Create /res/menu/activity_main.xml to define action menu.
<menu xmlns:android="http://schemas.android.com/apk/res/android"> <item android:id="@+id/menu_settings" android:title="@string/menu_settings" android:orderInCategory="100" android:showAsAction="never" /> <group android:checkableBehavior="single"> <item android:id="@+id/selecta" android:title="Selection A" android:checked="true"/> <item android:id="@+id/selectb" android:title="Selection B" /> <item android:id="@+id/selectc" android:title="Selection C" /> </group> </menu> The checked status will not be updated automatically. We can change it in onOptionsItemSelected() callback method.
package com.example.androidactionbar; import android.os.Bundle; import android.app.Activity; import android.view.Menu; import android.view.MenuItem; import android.widget.Toast; public class MainActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.activity_main, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case R.id.selecta: item.setChecked(true); Toast.makeText(getApplicationContext(), "A Selected", Toast.LENGTH_LONG).show(); return true; case R.id.selectb: item.setChecked(true); Toast.makeText(getApplicationContext(), "B Selected", Toast.LENGTH_LONG).show(); return true; case R.id.selectc: item.setChecked(true); Toast.makeText(getApplicationContext(), "C Selected", Toast.LENGTH_LONG).show(); return true; default: return super.onOptionsItemSelected(item); } } } -- Delivered by Feed43 service
Related Posts
There is no other posts in this category.Popular
-
Fruit Ninja v1.7.6 (Paid Version) Android Apk Game DownloadReal Racing 2 v000640 Requirements: Andorid 3.0+ Overview: REAL RACING 2 brings the thrills of …
-
N.O.V.A. 3 - Near Orbit Vanguard Alliance v1.0.1 Offline (Paid Version) Android Apk Game DownloadN.O.V.A. 3 - Near Orbit Vanguard Alliance v1.0.1 Offline Requirements: Android 4.1.1+ Jelly Bean …
-
Puffle Launch v1.0.1: Android latest games apk download free from mediafirePuffle Launch v1.0.1 is a very funny & enjoyable game for android phones. A high speed hero…
-
Galaxy on Fire 2 - Valkyrie v1.0.4.9 (Paid Version) Android Apk Game DownloadGalaxy on Fire 2 - Valkyrie v1.0.4.9 Requirements: Android 2.3 Overview: An action sci fi space…
-
Chlory: The Ocean Guard 1.1.2 (Paid Version) Android Apk Game DownloadChlory: The Ocean Guard 1.1.2 Requirements: 2.1 and up Overview: ★ Ranking #2 (Game/Paid) in th…
-
Preview build of ADT 21 and of the SDK Tools, r21 releasedPreview 1 is mostly a bugfix release. It contains a number of bug fixes in various areas tha…
-
Babel Rising 3D v1.7.1 APKBabel Rising 3D v1.7.1 APK Google play Store Go To Adf.ly Your divine intervent…

Post a Comment
Post a Comment