mirror of
https://github.com/iSoron/uhabits.git
synced 2025-12-07 09:38:52 -06:00
Remove CheckmarkDialog
This commit is contained in:
@@ -1,95 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:gravity="center"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:paddingTop="12dp"
|
||||
android:paddingStart="10dp"
|
||||
android:paddingEnd="10dp">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:padding="8dp"
|
||||
android:baselineAligned="false">
|
||||
|
||||
<FrameLayout
|
||||
style="@style/FormOuterBox"
|
||||
android:layout_width="0dp"
|
||||
android:layout_weight="1">
|
||||
<LinearLayout style="@style/DialogFormInnerBox">
|
||||
|
||||
<TextView
|
||||
style="@style/DialogFormLabel"
|
||||
android:text="@string/value" />
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="horizontal"
|
||||
android:gravity="center_horizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginBottom="8dp">
|
||||
|
||||
<Button
|
||||
android:id="@+id/yesBtn"
|
||||
android:text="@string/fa_check"
|
||||
style="@style/CheckmarkDialogBtn"/>
|
||||
<Button
|
||||
android:id="@+id/skippedBtn"
|
||||
android:text="@string/fa_skipped"
|
||||
android:visibility="gone"
|
||||
style="@style/CheckmarkDialogBtn"/>
|
||||
|
||||
<Button
|
||||
android:id="@+id/noBtn"
|
||||
android:text="@string/fa_times"
|
||||
style="@style/CheckmarkDialogBtn"/>
|
||||
|
||||
<Button
|
||||
android:id="@+id/questionBtn"
|
||||
android:text="@string/fa_question"
|
||||
android:visibility="gone"
|
||||
style="@style/CheckmarkDialogBtn"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
</FrameLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:padding="5dp"
|
||||
android:baselineAligned="false">
|
||||
|
||||
<FrameLayout
|
||||
style="@style/FormOuterBox"
|
||||
android:layout_width="0dp"
|
||||
android:layout_weight="1">
|
||||
|
||||
<LinearLayout style="@style/DialogFormInnerBox">
|
||||
|
||||
<TextView
|
||||
style="@style/DialogFormLabel"
|
||||
android:text="@string/notes" />
|
||||
|
||||
<EditText
|
||||
android:id="@+id/etNotes"
|
||||
android:inputType="textCapSentences|textMultiLine"
|
||||
style="@style/FormInput"
|
||||
android:scrollbars="vertical"
|
||||
android:hint="@string/example_notes"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</FrameLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
@@ -387,18 +387,6 @@
|
||||
<item name="android:textSize">@dimen/smallTextSize</item>
|
||||
</style>
|
||||
|
||||
<style name="CheckmarkDialogBtn">
|
||||
<item name="android:layout_width">48dp</item>
|
||||
<item name="android:layout_height">48dp</item>
|
||||
<item name="android:layout_marginTop">8dp</item>
|
||||
<item name="android:layout_marginBottom">8dp</item>
|
||||
<item name="android:layout_marginEnd">12dp</item>
|
||||
<item name="android:textSize">@dimen/regularTextSize</item>
|
||||
<item name="backgroundTint">@null</item>
|
||||
<item name="android:background">@drawable/bg_select_button</item>
|
||||
<item name="selectable">true</item>
|
||||
</style>
|
||||
|
||||
<style name="CheckmarkPopupBtn">
|
||||
<item name="android:layout_width">0dp</item>
|
||||
<item name="android:layout_weight">1</item>
|
||||
|
||||
Reference in New Issue
Block a user