125 lines
4.3 KiB
XML
125 lines
4.3 KiB
XML
<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="wrap_content"
|
|
android:orientation="vertical"
|
|
tools:context="net.osmand.plus.liveupdates.ReportsFragment">
|
|
|
|
<include layout="@layout/shadow_top"/>
|
|
|
|
<GridLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/bg_color"
|
|
android:columnCount="2"
|
|
android:paddingLeft="16dp">
|
|
|
|
<TextView
|
|
android:layout_height="48dp"
|
|
android:layout_columnSpan="2"
|
|
android:layout_marginRight="16dp"
|
|
android:gravity="center_vertical"
|
|
android:text="@string/select_month_and_country"
|
|
android:textColor="?android:textColorPrimary"/>
|
|
|
|
<View
|
|
android:layout_height="1dp"
|
|
android:layout_columnSpan="2"
|
|
android:background="?attr/dashboard_divider"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/calendarImageView"
|
|
android:layout_height="60dp"
|
|
android:src="@drawable/ic_action_data"/>
|
|
|
|
<!-- 24 is magic number + margin 16 = 42-->
|
|
<Spinner
|
|
android:id="@+id/montReportsSpinner"
|
|
android:layout_gravity="fill_horizontal|fill_vertical"
|
|
android:layout_marginLeft="8dp"
|
|
android:layout_marginRight="42dp"
|
|
android:gravity="center_vertical"/>
|
|
|
|
<View
|
|
android:layout_height="1dp"
|
|
android:layout_column="1"
|
|
android:background="?attr/dashboard_divider"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/regionIconImageView"
|
|
android:layout_height="60dp"
|
|
android:src="@drawable/ic_world_globe_dark"/>
|
|
|
|
<Spinner
|
|
android:id="@+id/regionReportsSpinner"
|
|
android:layout_gravity="fill_horizontal|fill_vertical"
|
|
android:layout_marginLeft="8dp"
|
|
android:layout_marginRight="42dp"
|
|
android:gravity="center_vertical"/>
|
|
|
|
<View
|
|
android:layout_height="1dp"
|
|
android:layout_columnSpan="2"
|
|
android:background="?attr/dashboard_divider"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/numberOfContributorsIcon"
|
|
android:layout_height="60dp"
|
|
android:src="@drawable/ic_group"/>
|
|
|
|
<LinearLayout
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/number_of_contributors"
|
|
android:textSize="@dimen/default_sub_text_size"/>
|
|
|
|
<TextView
|
|
android:id="@+id/contributorsTextView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="?android:textColorPrimary"
|
|
tools:text="65"/>
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_height="1dp"
|
|
android:layout_column="1"
|
|
android:background="?attr/dashboard_divider"/>
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/numberOfEditsIcon"
|
|
android:layout_height="60dp"
|
|
android:src="@drawable/ic_group"/>
|
|
|
|
<LinearLayout
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/number_of_edits"
|
|
android:textSize="@dimen/default_sub_text_size"/>
|
|
|
|
<TextView
|
|
android:id="@+id/editsTextView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="?android:textColorPrimary"
|
|
tools:text="1125"/>
|
|
</LinearLayout>
|
|
</GridLayout>
|
|
|
|
<include layout="@layout/shadow_bottom"/>
|
|
|
|
</LinearLayout>
|