Fix nav bar color on shared contacts edit screen.

master
Alex Hart 2019-11-20 09:26:34 -04:00 committed by Greyson Parrelli
parent 6933ca50a7
commit db4d561d9e
2 changed files with 4 additions and 5 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout 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"
android:layout_width="match_parent"
android:layout_height="match_parent"
@ -13,8 +13,8 @@
android:layout_height="?attr/actionBarSize"
android:theme="?attr/actionBarStyle"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"/>
android:elevation="4dp"
app:navigationIcon="@drawable/ic_check_24" />
<ScrollView
android:layout_width="match_parent"

View File

@ -75,7 +75,6 @@ public class ContactNameEditActivity extends PassphraseRequiredActionBarActivity
setSupportActionBar(toolbar);
toolbar.setTitle("");
toolbar.setNavigationIcon(R.drawable.ic_check_white_24dp);
toolbar.setNavigationOnClickListener(v -> {
Intent resultIntent = new Intent();
resultIntent.putExtra(KEY_NAME, viewModel.getName());