more linter clean up
This commit is contained in:
parent
4cd210642e
commit
0b74ecbf05
5 changed files with 7 additions and 13 deletions
|
@ -3,7 +3,7 @@
|
||||||
package="net.bierbaumer.otp_authenticator">
|
package="net.bierbaumer.otp_authenticator">
|
||||||
|
|
||||||
<application
|
<application
|
||||||
android:allowBackup="true"
|
android:allowBackup="false"
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:supportsRtl="true"
|
android:supportsRtl="true"
|
||||||
|
|
|
@ -46,10 +46,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</android.support.design.widget.AppBarLayout>
|
</android.support.design.widget.AppBarLayout>
|
||||||
|
|
||||||
<include layout="@layout/content_main" />
|
<include layout="@layout/content_main" />
|
||||||
|
|
|
@ -21,10 +21,6 @@
|
||||||
android:layout_alignParentStart="true"
|
android:layout_alignParentStart="true"
|
||||||
tools:listitem="@android:layout/simple_list_item_2"
|
tools:listitem="@android:layout/simple_list_item_2"
|
||||||
|
|
||||||
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
|
@ -7,12 +7,12 @@
|
||||||
android:id="@+id/action_edit"
|
android:id="@+id/action_edit"
|
||||||
android:orderInCategory="100"
|
android:orderInCategory="100"
|
||||||
android:icon="@android:drawable/ic_menu_edit"
|
android:icon="@android:drawable/ic_menu_edit"
|
||||||
app:showAsAction="always"
|
app:showAsAction="ifRoom"
|
||||||
android:label="Edit" />
|
android:title="@string/menu_edit" />
|
||||||
<item
|
<item
|
||||||
android:id="@+id/action_delete"
|
android:id="@+id/action_delete"
|
||||||
android:orderInCategory="100"
|
android:orderInCategory="100"
|
||||||
android:icon="@android:drawable/ic_menu_delete"
|
android:icon="@android:drawable/ic_menu_delete"
|
||||||
app:showAsAction="always"
|
app:showAsAction="ifRoom"
|
||||||
android:label="Delete" />
|
android:title="@string/menu_delete" />
|
||||||
</menu>
|
</menu>
|
||||||
|
|
|
@ -4,4 +4,6 @@
|
||||||
<string name="action_settings">Settings</string>
|
<string name="action_settings">Settings</string>
|
||||||
<string name="action_scan">Scan QR-Code</string>
|
<string name="action_scan">Scan QR-Code</string>
|
||||||
<string name="no_accounts">No Account has been added yet</string>
|
<string name="no_accounts">No Account has been added yet</string>
|
||||||
|
<string name="menu_delete">Delete</string>
|
||||||
|
<string name="menu_edit">Edit</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
Loading…
Reference in a new issue