1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/common_padding"
- android:layout_marginTop="@dimen/common_padding_large"
- android:layout_marginEnd="@dimen/common_padding"
- android:orientation="horizontal">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:text="@string/year_select"
- android:textSize="@dimen/text_size_medium" />
- <TextView
- android:id="@+id/year"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/common_padding"
- android:layout_weight="1"
- android:gravity="end"
- android:hint="@string/please_select"
- android:singleLine="true"
- android:textColorHint="@color/hint_text_color"
- android:textSize="@dimen/text_size_medium" />
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="@dimen/line"
- android:layout_margin="@dimen/common_padding"
- android:background="@color/line_color" />
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="@dimen/common_padding"
- android:gravity="center"
- android:text="@string/seller_rank"
- android:textColor="@color/text_color"
- android:textSize="@dimen/text_size_large"
- android:textStyle="bold" />
- <com.bin.david.form.core.SmartTable
- android:id="@+id/rank_table"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center_horizontal"
- android:layout_margin="@dimen/common_padding"/>
- </LinearLayout>
|