2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.gridlayout.widget.GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-02-17 21:11:32 +05:30
|
|
|
xmlns:grid="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_height="wrap_content"
|
2020-02-17 21:11:32 +05:30
|
|
|
android:padding="8dp"
|
|
|
|
grid:alignmentMode="alignBounds">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2020-02-17 21:11:32 +05:30
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="4dp"
|
|
|
|
android:orientation="vertical"
|
|
|
|
grid:layout_column="0"
|
|
|
|
grid:layout_columnWeight="1"
|
|
|
|
grid:layout_row="0">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2021-09-09 00:00:20 +05:30
|
|
|
<include
|
|
|
|
android:id="@+id/card_credit"
|
|
|
|
layout="@layout/card_credit" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2021-09-09 00:00:20 +05:30
|
|
|
<include
|
|
|
|
android:id="@+id/card_social"
|
|
|
|
layout="@layout/card_social" />
|
2020-02-17 21:11:32 +05:30
|
|
|
</LinearLayout>
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2020-02-17 21:11:32 +05:30
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="4dp"
|
|
|
|
android:orientation="vertical"
|
|
|
|
grid:layout_column="1"
|
|
|
|
grid:layout_columnWeight="1"
|
|
|
|
grid:layout_row="0">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2021-09-09 00:00:20 +05:30
|
|
|
<include
|
|
|
|
android:id="@+id/card_retro_info"
|
|
|
|
layout="@layout/card_retro_info" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2021-09-09 00:00:20 +05:30
|
|
|
<include
|
|
|
|
android:id="@+id/card_other"
|
|
|
|
layout="@layout/card_other" />
|
2020-02-17 21:11:32 +05:30
|
|
|
</LinearLayout>
|
2018-08-30 14:59:30 +05:30
|
|
|
</androidx.gridlayout.widget.GridLayout>
|