[android] Custom ActionBar with ActionMode     기본 모드       custom view가 추가된 action mode     <LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android” xmlns:tools=”http://schemas.android.com/tools” android:layout_width=”match_parent” android:layout_height=”match_parent” android:gravity=”center_vertical” android:paddingRight=”10dp” > <CheckBox android:id=”@+id/checkBox1″ android:layout_width=”wrap_content”Read More →

보통 상태         액션모드 상태     <menu xmlns:android=”http://schemas.android.com/apk/res/android” xmlns:tools=”http://schemas.android.com/tools” tools:context=”kr.susemi99.customactionbar.MainActivity” > <item android:id=”@+id/action_delete” android:showAsAction=”always” android:title=”Delete”/> <item android:id=”@+id/action_settings” android:orderInCategory=”100″ android:showAsAction=”never” android:title=”@string/action_settings”/> </menu>   public class MainActivity extendsRead More →