Skip to content
This repository was archived by the owner on Aug 7, 2021. It is now read-only.

Commit a1ff1fe

Browse files
committed
Create save_dialog_box.xml
1 parent 087fefc commit a1ff1fe

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<LinearLayout
3+
xmlns:android="http://schemas.android.com/apk/res/android"
4+
android:layout_width="395dp"
5+
android:layout_height="715dp"
6+
android:orientation="vertical">
7+
8+
<ImageView
9+
android:layout_width="match_parent"
10+
android:layout_height="64dp"
11+
android:background="#2FFFEB3B"
12+
android:contentDescription="@string/app_name"
13+
android:scaleType="fitStart"
14+
android:src="@drawable/save" />
15+
16+
<Button
17+
android:id="@+id/saveCalib"
18+
android:layout_width="match_parent"
19+
android:layout_height="wrap_content"
20+
android:onClick="saveCalibration"
21+
android:text="Save Calibration" />
22+
23+
<Button
24+
android:id="@+id/exportAndShare"
25+
android:layout_width="match_parent"
26+
android:layout_height="wrap_content"
27+
android:text="Export ABC values and share" />
28+
29+
<Button
30+
android:id="@+id/cancel"
31+
android:layout_width="match_parent"
32+
android:layout_height="wrap_content"
33+
android:text="Cancel" />
34+
35+
</LinearLayout>

0 commit comments

Comments
 (0)