forked from stud179277/Timer
38 lines
1.4 KiB
XML
38 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="4dp"
|
|
android:layout_marginBottom="4dp">
|
|
|
|
|
|
<LinearLayout
|
|
android:id="@+id/layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/green_rectangle"
|
|
android:gravity="center"
|
|
android:orientation="horizontal"
|
|
android:paddingTop="8dp"
|
|
android:paddingBottom="8dp">
|
|
|
|
<TextView
|
|
android:id="@+id/training_text"
|
|
android:layout_width="353dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:gravity="center"
|
|
android:paddingTop="10dp"
|
|
android:paddingBottom="10dp"
|
|
android:text="Тренировка"
|
|
android:textColor="#000000"
|
|
android:textSize="18sp" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/deleteButtonTraining"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:background="@android:drawable/ic_menu_delete" />
|
|
</LinearLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |