2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<android.support.v7.widget.GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-08-05 22:05:09 +05:30
|
|
|
xmlns:grid="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="8dp"
|
|
|
|
grid:alignmentMode="alignBounds">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dp"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_height="wrap_content"
|
2018-08-05 22:05:09 +05:30
|
|
|
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
|
|
|
|
2018-08-05 22:05:09 +05:30
|
|
|
<include layout="@layout/card_retro_info"/>
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-05 22:05:09 +05:30
|
|
|
<include layout="@layout/card_credit"/>
|
|
|
|
</LinearLayout>
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-05 22:05:09 +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
|
|
|
|
2018-08-05 22:05:09 +05:30
|
|
|
<include layout="@layout/card_social"/>
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-05 22:05:09 +05:30
|
|
|
<include layout="@layout/card_other"/>
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-05 22:05:09 +05:30
|
|
|
</LinearLayout>
|
2018-07-27 18:37:33 +05:30
|
|
|
</android.support.v7.widget.GridLayout>
|