Use contextual action bar menu for conversation items.
After Width: | Height: | Size: 375 B |
After Width: | Height: | Size: 381 B |
After Width: | Height: | Size: 442 B |
After Width: | Height: | Size: 423 B |
After Width: | Height: | Size: 394 B |
After Width: | Height: | Size: 398 B |
After Width: | Height: | Size: 284 B |
After Width: | Height: | Size: 288 B |
After Width: | Height: | Size: 375 B |
After Width: | Height: | Size: 372 B |
After Width: | Height: | Size: 362 B |
After Width: | Height: | Size: 359 B |
After Width: | Height: | Size: 351 B |
After Width: | Height: | Size: 353 B |
After Width: | Height: | Size: 588 B |
After Width: | Height: | Size: 613 B |
After Width: | Height: | Size: 441 B |
After Width: | Height: | Size: 451 B |
After Width: | Height: | Size: 464 B |
After Width: | Height: | Size: 470 B |
After Width: | Height: | Size: 715 B |
After Width: | Height: | Size: 713 B |
After Width: | Height: | Size: 495 B |
After Width: | Height: | Size: 500 B |
@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item android:state_enabled="true" android:state_selected="true"
|
||||||
|
android:drawable="@drawable/list_selected_holo_light" />
|
||||||
|
</selector>
|
@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item android:state_enabled="true" android:state_selected="true"
|
||||||
|
android:drawable="@drawable/list_selected_holo_dark" />
|
||||||
|
</selector>
|
@ -1,18 +1,33 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<item android:title="@string/conversation_context__menu_copy_text"
|
<item android:title="@string/conversation_context__menu_message_details"
|
||||||
android:id="@+id/menu_context_copy" />
|
android:id="@+id/menu_context_details"
|
||||||
|
android:icon="?menu_info_icon"
|
||||||
|
android:showAsAction="always" />
|
||||||
|
|
||||||
<item android:title="@string/conversation_context__menu_delete_message"
|
<item android:title="@string/conversation_context__menu_delete_message"
|
||||||
android:id="@+id/menu_context_delete_message" />
|
android:id="@+id/menu_context_delete_message"
|
||||||
|
android:icon="?menu_trash_icon"
|
||||||
|
android:showAsAction="always" />
|
||||||
|
|
||||||
<item android:title="@string/conversation_context__menu_message_details"
|
<item android:title="@string/conversation_context__menu_copy_text"
|
||||||
android:id="@+id/menu_context_details" />
|
android:id="@+id/menu_context_copy"
|
||||||
|
android:icon="?menu_copy_icon"
|
||||||
|
android:showAsAction="always" />
|
||||||
|
|
||||||
<item android:title="@string/conversation_context__menu_forward_message"
|
<item android:title="@string/conversation_context__menu_forward_message"
|
||||||
android:id="@+id/menu_context_forward" />
|
android:id="@+id/menu_context_forward"
|
||||||
|
android:icon="?menu_forward_icon"
|
||||||
|
android:showAsAction="ifRoom" />
|
||||||
|
|
||||||
<item android:title="@string/conversation_context__menu_resend_message"
|
<item android:title="@string/conversation_context__menu_resend_message"
|
||||||
android:id="@+id/menu_context_resend"
|
android:id="@+id/menu_context_resend"
|
||||||
android:visible="false" />
|
android:visible="false"
|
||||||
|
android:showAsAction="never" />
|
||||||
|
|
||||||
|
<item android:title="@string/conversation_context_image__save_attachment"
|
||||||
|
android:id="@+id/menu_context_save_attachment"
|
||||||
|
android:visible="false"
|
||||||
|
android:icon="?menu_save_icon"
|
||||||
|
android:showAsAction="always" />
|
||||||
</menu>
|
</menu>
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
|
|
||||||
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
|
||||||
<item android:title="@string/conversation_context_image__save_attachment"
|
|
||||||
android:id="@+id/menu_context_save_attachment" />
|
|
||||||
</menu>
|
|