ref: 7d8829fda573a3d4e0639aee16d69df0d37e28d1
app/src/main/res/layout/row_favourite_edit.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
<?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout 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="wrap_content" android:orientation="vertical"> <TextView android:id="@+id/favourite_edit_row" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginBottom="16dp" android:layout_marginEnd="16dp" android:layout_marginStart="16dp" android:layout_marginTop="16dp" android:text="" android:textAlignment="viewStart" android:textAppearance="@style/TextAppearance.AppCompat" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toStartOf="@+id/favourite_edit_delete" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <ImageView android:id="@+id/favourite_edit_delete" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="16dp" android:layout_marginEnd="8dp" android:layout_marginTop="16dp" android:contentDescription="@string/favourite_element_delete_button" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintTop_toTopOf="parent" app:srcCompat="@drawable/ic_delete" /> <!--<ImageView--> <!--android:id="@+id/favourite_edit_split"--> <!--android:layout_width="wrap_content"--> <!--android:layout_height="wrap_content"--> <!--android:layout_marginBottom="16dp"--> <!--android:layout_marginEnd="58dp"--> <!--android:layout_marginTop="16dp"--> <!--app:layout_constraintBottom_toBottomOf="parent"--> <!--app:layout_constraintEnd_toEndOf="parent"--> <!--app:layout_constraintTop_toTopOf="parent"--> <!--app:srcCompat="@drawable/ic_split"--> <!--tools:layout_editor_absoluteX="302dp"--> <!--tools:layout_editor_absoluteY="16dp"--> <!--android:contentDescription="@string/favourite_element_split_button" />--> </android.support.constraint.ConstraintLayout> |