mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 02:25:19 +00:00
b377fe84df
1) Move to Fragments for the list view. 2) Switch to CursorLoader from my jankey self-managed cursor. 3) Add session security logic to the ActionBar. 4) Fix colors to be less ugly.
18 lines
567 B
XML
18 lines
567 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<item android:title="Call"
|
|
android:id="@+id/menu_call"
|
|
android:icon="@drawable/ic_menu_call"
|
|
android:showAsAction="ifRoom" />
|
|
|
|
<item android:title="Add attachment"
|
|
android:id="@+id/menu_add_attachment"
|
|
android:icon="@drawable/ic_menu_attach" />
|
|
|
|
<item android:title="Delete thread"
|
|
android:id="@+id/menu_delete_thread"
|
|
android:icon="@android:drawable/ic_menu_delete" />
|
|
|
|
</menu>
|