The StartActivity is the first activity which will be launched in the baby monitor, and in the future will list the two main options: become a monitor or a listener.
12 lines
355 B
XML
12 lines
355 B
XML
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:context="gpl.babymonitor.StartActivity" >
|
|
|
|
<item
|
|
android:id="@+id/action_settings"
|
|
android:orderInCategory="100"
|
|
android:showAsAction="never"
|
|
android:title="@string/action_settings"/>
|
|
|
|
</menu>
|