remove unneeded divider

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2022-08-01 18:47:50 +02:00
parent 11f78b75fe
commit 4b4bd2bb6f
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B
2 changed files with 3 additions and 11 deletions

View file

@ -115,8 +115,7 @@ public class ChooseAccountDialogFragment extends DialogFragment {
NextcloudTalkApplication.Companion.getSharedApplication().getComponentApplication().inject(this);
viewThemeUtils.themeDialog(binding.getRoot());
viewThemeUtils.themeDialogDivider(binding.dividerTop);
viewThemeUtils.themeDialogDivider(binding.dividerBottom);
viewThemeUtils.themeDialogDivider(binding.divider);
// Defining user picture
binding.currentAccount.userIcon.setTag("");

View file

@ -44,13 +44,6 @@
app:layout_constraintTop_toBottomOf="@id/current_account"
tools:visibility="visible">
<View
android:id="@+id/dividerTop"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginTop="4dp"
android:background="@color/list_divider_background" />
<com.google.android.material.button.MaterialButton
android:id="@+id/set_status"
style="@style/Nextcloud.Material.TextButton"
@ -72,7 +65,7 @@
</LinearLayout>
<View
android:id="@+id/dividerBottom"
android:id="@+id/divider"
android:layout_width="0dp"
android:layout_height="1dp"
android:layout_marginTop="4dp"
@ -91,7 +84,7 @@
app:layout_constraintBottom_toTopOf="@+id/add_account"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/dividerBottom"
app:layout_constraintTop_toBottomOf="@+id/divider"
tools:listitem="@layout/account_item" />
<com.google.android.material.button.MaterialButton