70 lines
2.7 KiB
XML
70 lines
2.7 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:background="@color/white"
|
||
|
|
android:orientation="vertical">
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_margin="@dimen/dp_5"
|
||
|
|
android:orientation="vertical">
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:layout_gravity="start"
|
||
|
|
android:gravity="start">
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_marginTop="2dp"
|
||
|
|
android:gravity="center">
|
||
|
|
<ImageView
|
||
|
|
android:layout_width="15dp"
|
||
|
|
android:layout_height="15dp"
|
||
|
|
android:layout_gravity="center_horizontal"
|
||
|
|
android:background="@drawable/exclamationmark"/>
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/popuptext"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Are you sure you want to delete?"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:fontFamily="@font/manropeextrabold"
|
||
|
|
android:textColor="@android:color/black"
|
||
|
|
android:padding="3dp"
|
||
|
|
android:layout_gravity="center_horizontal"/>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_marginLeft="10dp"
|
||
|
|
android:gravity="start">
|
||
|
|
<Button
|
||
|
|
android:id="@+id/deletecancel"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Cancel"
|
||
|
|
android:fontFamily="@font/popins_bold">
|
||
|
|
</Button>
|
||
|
|
<Button
|
||
|
|
android:id="@+id/deleteok"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginLeft="@dimen/dp_10"
|
||
|
|
android:text="ok"
|
||
|
|
android:fontFamily="@font/popins_bold">
|
||
|
|
</Button>
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|