
Implementing the bare bones of a generic "peer finder" framework. This may or may not eventuate to something which can live in its own library and be used by other projects. Might go hand in hand with Carries idea of having a common UI to be shared among projects.
16 lines
559 B
XML
16 lines
559 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto" >
|
|
|
|
<item
|
|
android:id="@+id/action_update_repo"
|
|
android:icon="@drawable/ic_refresh_white"
|
|
android:title="@string/menu_update_repo"
|
|
app:showAsAction="always|withText"/>
|
|
<item
|
|
android:id="@+id/action_add_repo"
|
|
android:icon="@drawable/ic_add_white"
|
|
android:title="@string/menu_add_repo"
|
|
app:showAsAction="always|withText"/>
|
|
|
|
</menu> |