<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:orientation="vertical"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@drawable/shape_bg_gradient"
|
tools:context=".dataanalysis.rank.AnalysisRankActivity">
|
|
<include android:id="@+id/action_bar_rank"
|
layout="@layout/layout_actionbar" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical">
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:paddingStart="40dp"
|
android:paddingEnd="@dimen/dimen6"
|
android:orientation="vertical">
|
<TextView
|
android:id="@+id/text_topTask"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textSize="@dimen/textSize_18"
|
android:textColor="@color/white"
|
android:hint="xxx"
|
android:layout_marginTop="@dimen/dimen4" />
|
<TextView
|
android:id="@+id/text_scene"
|
android:textColor="@color/white"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:visibility="invisible"/>
|
</LinearLayout>
|
|
<!--<View-->
|
<!--android:layout_width="match_parent"-->
|
<!--android:layout_height="8dp"-->
|
<!--android:background="#ebebeb" />-->
|
|
<android.support.v7.widget.CardView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:elevation="@dimen/dimen2"
|
tools:targetApi="lollipop"
|
android:layout_marginStart="@dimen/dimen6"
|
android:layout_marginEnd="@dimen/dimen6"
|
android:layout_marginBottom="@dimen/dimen6"
|
app:cardCornerRadius="@dimen/dimen6">
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:padding="@dimen/dimen6"
|
android:orientation="vertical">
|
<android.support.design.widget.TabLayout
|
android:id="@+id/tabLayout"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:elevation="@dimen/dimen2">
|
</android.support.design.widget.TabLayout>
|
|
<android.support.v4.view.ViewPager
|
android:id="@+id/viewPager"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
</android.support.v4.view.ViewPager>
|
</LinearLayout>
|
</android.support.v7.widget.CardView>
|
</LinearLayout>
|
|
</LinearLayout>
|