Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source
/
warply_android_sdk_maven_plugin
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
thkouk00
2022-03-28 17:03:50 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
763f19a567e39a3c20b2099a22889abd52114e96
763f19a5
1 parent
99ede599
fixes in wallet
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
28 additions
and
11 deletions
warply_android_sdk/src/main/res/drawable/shape_cos_transparent_rounded2.xml
warply_android_sdk/src/main/res/layout/activity_loyalty.xml
warply_android_sdk/src/main/res/layout/gift_layout.xml
warply_android_sdk/src/main/res/layout/item_profile_recycler.xml
warply_android_sdk/src/main/res/layout/redeemed_gift_layout.xml
warply_android_sdk/src/main/res/drawable/shape_cos_transparent_rounded2.xml
0 → 100644
View file @
763f19a
<?xml version="1.0" encoding="UTF-8"?>
<shape
xmlns:android=
"http://schemas.android.com/apk/res/android"
>
<stroke
android:width=
"1.5dp"
android:color=
"@android:color/transparent"
/>
<corners
android:topLeftRadius=
"20dp"
android:topRightRadius=
"20dp"
android:bottomLeftRadius=
"20dp"
android:bottomRightRadius=
"20dp"
/>
<solid
android:color=
"@android:color/transparent"
/>
</shape>
\ No newline at end of file
warply_android_sdk/src/main/res/layout/activity_loyalty.xml
View file @
763f19a
...
...
@@ -2,7 +2,7 @@
xmlns:app=
"http://schemas.android.com/apk/res-auto"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:background=
"
@android:color/white
"
>
android:background=
"
#F3F3F3
"
>
<androidx.constraintlayout.widget.ConstraintLayout
android:id=
"@+id/cl_loyalty_wallet_header"
...
...
@@ -36,7 +36,8 @@
<ScrollView
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:layout_below=
"@+id/cl_loyalty_wallet_header"
>
android:layout_below=
"@+id/cl_loyalty_wallet_header"
android:background=
"#F3F3F3"
>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width=
"match_parent"
...
...
warply_android_sdk/src/main/res/layout/gift_layout.xml
View file @
763f19a
<?xml version="1.0" encoding="utf-8"?>
<
RelativeLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
<
androidx.cardview.widget.CardView
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
android:layout_width=
"
360dp
"
android:layout_width=
"
@dimen/width_full
"
android:layout_height=
"240dp"
app:cardCornerRadius=
"20dp"
android:layout_marginBottom=
"2dp"
android:layout_marginStart=
"10dp"
>
<androidx.constraintlayout.widget.ConstraintLayout
...
...
@@ -27,9 +29,8 @@
android:id=
"@+id/iv_gift_item_logo"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:background=
"@drawable/shape_cos_transparent_rounded"
android:clipToOutline=
"true"
android:scaleType=
"
centerCrop
"
android:scaleType=
"
fitXY
"
android:src=
"@drawable/ic_banner_gift"
app:layout_constraintBottom_toTopOf=
"@+id/gl_horizontal_75_guideline"
app:layout_constraintEnd_toEndOf=
"parent"
...
...
@@ -99,4 +100,4 @@
</androidx.constraintlayout.widget.ConstraintLayout>
</RelativeLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</RelativeLayout>
\ No newline at end of file
</androidx.cardview.widget.CardView>
\ No newline at end of file
...
...
warply_android_sdk/src/main/res/layout/item_profile_recycler.xml
View file @
763f19a
...
...
@@ -2,7 +2,7 @@
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
xmlns:tools=
"http://schemas.android.com/tools"
android:layout_width=
"
360dp
"
android:layout_width=
"
@dimen/width_full
"
android:layout_height=
"150dp"
android:layout_marginStart=
"10dp"
android:background=
"@drawable/selector_cos_campaign"
>
...
...
warply_android_sdk/src/main/res/layout/redeemed_gift_layout.xml
View file @
763f19a
<?xml version="1.0" encoding="utf-8"?>
<
RelativeLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
<
androidx.cardview.widget.CardView
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
android:layout_width=
"
360dp
"
android:layout_width=
"
@dimen/width_full
"
android:layout_height=
"240dp"
app:cardCornerRadius=
"20dp"
android:layout_marginBottom=
"2dp"
android:layout_marginStart=
"10dp"
>
<androidx.constraintlayout.widget.ConstraintLayout
...
...
@@ -85,4 +87,4 @@
</androidx.constraintlayout.widget.ConstraintLayout>
</RelativeLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</RelativeLayout>
\ No newline at end of file
</androidx.cardview.widget.CardView>
\ No newline at end of file
...
...
Please
register
or
login
to post a comment