mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
When the user enters a private conversation after adding her second contact, an onboarding screen will be shown highlighting the possibility of introducing the contacts to each other.
21 lines
606 B
XML
21 lines
606 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"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<item
|
|
android:id="@+id/action_introduction"
|
|
android:icon="@drawable/introduction_white"
|
|
android:title="@string/introduction_button"
|
|
android:visible="false"
|
|
app:showAsAction="never"
|
|
tools:visible="true"/>
|
|
|
|
<item
|
|
android:id="@+id/action_social_remove_person"
|
|
android:icon="@drawable/action_delete_white"
|
|
android:title="@string/delete_contact"
|
|
app:showAsAction="never"/>
|
|
|
|
</menu> |