Browse Source

Flow done

master
preyearegmi 6 years ago
parent
commit
fbcb1ae741
  1. 2
      app/src/main/java/com/gmeremit/online/gmeremittance_native/customwidgets/countrylistingdialog/CountryListingDialog.java
  2. 7
      app/src/main/res/drawable/ic_rounded_country_listing_gray.xml
  3. 4
      app/src/main/res/layout/dialog_country_listing.xml

2
app/src/main/java/com/gmeremit/online/gmeremittance_native/customwidgets/countrylistingdialog/CountryListingDialog.java

@ -46,7 +46,7 @@ public class CountryListingDialog extends DialogFragment implements View.OnClick
Dialog dialog = builder.create(); Dialog dialog = builder.create();
try { try {
this.window = dialog.getWindow(); this.window = dialog.getWindow();
window.setBackgroundDrawableResource(R.drawable.ic_rounded_white);
window.setBackgroundDrawableResource(R.drawable.ic_rounded_country_listing_gray);
} catch (NullPointerException e) { } catch (NullPointerException e) {

7
app/src/main/res/drawable/ic_rounded_country_listing_gray.xml

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/gray"/>
<corners android:radius="12dp"/>
</shape>

4
app/src/main/res/layout/dialog_country_listing.xml

@ -3,15 +3,15 @@
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical"> android:orientation="vertical">
<FrameLayout <FrameLayout
android:background="#FAFAFA"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content"> android:layout_height="wrap_content">
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView <com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Select a Country"
android:text="Select Country"
android:textColor="@color/darkgray" android:textColor="@color/darkgray"
android:textSize="18sp" android:textSize="18sp"
android:gravity="center" android:gravity="center"

Loading…
Cancel
Save