mirror of https://github.com/ThmmyNoLife/mTHMMY
Apostolos Fanakis
8 years ago
3 changed files with 84 additions and 5 deletions
@ -1,7 +1,79 @@ |
|||||
<?xml version="1.0" encoding="utf-8"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
<android.support.v4.widget.NestedScrollView |
||||
android:orientation="vertical" |
xmlns:android="http://schemas.android.com/apk/res/android" |
||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||
android:layout_height="match_parent"> |
android:layout_height="match_parent" |
||||
|
android:layout_marginBottom="4dp" |
||||
|
android:layout_marginEnd="16dp" |
||||
|
android:layout_marginStart="16dp" |
||||
|
android:layout_marginTop="4dp" |
||||
|
android:background="@color/background"> |
||||
|
|
||||
</LinearLayout> |
<LinearLayout |
||||
|
android:layout_width="match_parent" |
||||
|
android:layout_height="match_parent" |
||||
|
android:orientation="vertical"> |
||||
|
|
||||
|
<TextView |
||||
|
android:id="@+id/general_statistics_title" |
||||
|
android:layout_width="match_parent" |
||||
|
android:layout_height="wrap_content" |
||||
|
android:background="@color/card_background" |
||||
|
android:text="@string/general_statistics_title" |
||||
|
android:textAlignment="center" |
||||
|
android:textColor="@color/primary_text" |
||||
|
android:textStyle="bold"/> |
||||
|
|
||||
|
<TextView |
||||
|
android:id="@+id/general_statistics" |
||||
|
android:layout_width="match_parent" |
||||
|
android:layout_height="wrap_content" |
||||
|
android:text="@string/general_statistics" |
||||
|
android:textColor="@color/primary_text"/> |
||||
|
|
||||
|
<TextView |
||||
|
android:id="@+id/posting_activity_by_time_title" |
||||
|
android:layout_width="match_parent" |
||||
|
android:layout_height="wrap_content" |
||||
|
android:background="@color/card_background" |
||||
|
android:text="@string/posting_activity_by_time_title" |
||||
|
android:textAlignment="center" |
||||
|
android:textColor="@color/primary_text" |
||||
|
android:textStyle="bold"/> |
||||
|
|
||||
|
<com.github.mikephil.charting.charts.LineChart |
||||
|
android:id="@+id/posting_activity_by_time_chart" |
||||
|
android:layout_width="match_parent" |
||||
|
android:layout_height="wrap_content"/> |
||||
|
|
||||
|
<TextView |
||||
|
android:id="@+id/most_popular_boards_by_posts_title" |
||||
|
android:layout_width="match_parent" |
||||
|
android:layout_height="wrap_content" |
||||
|
android:background="@color/card_background" |
||||
|
android:text="@string/most_popular_boards_by_posts_title" |
||||
|
android:textAlignment="center" |
||||
|
android:textColor="@color/primary_text" |
||||
|
android:textStyle="bold"/> |
||||
|
|
||||
|
<com.github.mikephil.charting.charts.HorizontalBarChart |
||||
|
android:id="@+id/most_popular_boards_by_posts_chart" |
||||
|
android:layout_width="match_parent" |
||||
|
android:layout_height="wrap_content"/> |
||||
|
|
||||
|
<TextView |
||||
|
android:id="@+id/most_popular_boards_by_activity_title" |
||||
|
android:layout_width="match_parent" |
||||
|
android:layout_height="wrap_content" |
||||
|
android:background="@color/card_background" |
||||
|
android:text="@string/most_popular_boards_by_activity_title" |
||||
|
android:textAlignment="center" |
||||
|
android:textColor="@color/primary_text" |
||||
|
android:textStyle="bold"/> |
||||
|
|
||||
|
<com.github.mikephil.charting.charts.HorizontalBarChart |
||||
|
android:id="@+id/most_popular_boards_by_activity_chart" |
||||
|
android:layout_width="match_parent" |
||||
|
android:layout_height="wrap_content"/> |
||||
|
</LinearLayout> |
||||
|
</android.support.v4.widget.NestedScrollView> |
Loading…
Reference in new issue