mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-23 21:45:42 +03:00
remove unneeded divider
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
parent
11f78b75fe
commit
4b4bd2bb6f
2 changed files with 3 additions and 11 deletions
|
@ -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("");
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue