Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions spinerdialog/src/main/res/layout/dialog_layout.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ffffff"
android:background="?attr/backgroundcolor"
android:id="@+id/mainView"
android:orientation="vertical">

Expand All @@ -17,8 +17,9 @@
android:id="@+id/spinerTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Select or Search Items"
android:text="Search Currency"
android:textSize="17sp"
android:textColor="?attr/editTextColor"
android:textStyle="bold" />

<LinearLayout
Expand All @@ -31,14 +32,14 @@
android:id="@+id/searchIcon"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/ic_search_black_36dp" />
android:src="@drawable/searchicon_white" />

<EditText
android:id="@+id/searchBox"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginLeft="5dp"
android:background="#ffffff"
android:background="#ffff"
android:inputType="text" />

</LinearLayout>
Expand All @@ -47,24 +48,26 @@
android:id="@+id/viewLine"
android:layout_width="wrap_content"
android:layout_height="0.1dp"
android:background="#d1d1d1" />
android:background="?attr/editTextColor" />

<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="300dp"
android:divider="#d1d1d1"
android:divider="?attr/editTextColor"
android:textColor="?attr/editTextColor"
android:dividerHeight="0.1dp"/>

<TextView
android:clickable="true"
android:padding="5dp"
android:layout_gravity="right"
android:id="@+id/close"
android:textColor="?attr/editTextColor"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Close" />

</LinearLayout>

</LinearLayout>
</LinearLayout>
6 changes: 3 additions & 3 deletions spinerdialog/src/main/res/layout/items_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/text1"
android:padding="13dp"
android:textSize="16sp"
android:padding="15dp"
android:textSize="18sp"
android:gravity="center|left">

</TextView>
</TextView>
8 changes: 4 additions & 4 deletions spinerdialog/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#FFFFFF</color>
<color name="colorAccent">#18D1CD</color>
<color name="colorPrimary">#121212</color>
<color name="colorAccent">#FFFF</color>
<color name="colorDarkGray">#949494</color>
<color name="colorGray">#C9C9C9</color>
<color name="colorLightGray">#E9E7E7</color>
<color name="colorBlack">#000000</color>
<color name="colorLightGray">#FFFF</color>
<color name="colorBlack">#FFFF</color>
<color name="colorWhite">#FFFFFF</color>
</resources>