36 lines
No EOL
1.1 KiB
XML
36 lines
No EOL
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.gridlayout.widget.GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
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"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="4dp"
|
|
android:orientation="vertical"
|
|
grid:layout_column="0"
|
|
grid:layout_columnWeight="1"
|
|
grid:layout_row="0">
|
|
|
|
<include layout="@layout/card_credit" />
|
|
|
|
<include layout="@layout/card_social" />
|
|
</LinearLayout>
|
|
|
|
<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">
|
|
|
|
<include layout="@layout/card_retro_info" />
|
|
|
|
<include layout="@layout/card_other" />
|
|
</LinearLayout>
|
|
</androidx.gridlayout.widget.GridLayout> |