Skip to content

Instantly share code, notes, and snippets.

@pareshchouhan
Created October 7, 2015 17:58
Show Gist options
  • Save pareshchouhan/695ded4ab16babdfec39 to your computer and use it in GitHub Desktop.
Save pareshchouhan/695ded4ab16babdfec39 to your computer and use it in GitHub Desktop.
<FrameLayout 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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:showIn="@layout/activity_main"
tools:context="com.futuretraxex.qcm.MainActivityFragment"
android:background="@color/chart_bg">
<GridLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:columnCount="2"
>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_columnSpan="1"
android:layout_columnWeight="1"
android:src="@drawable/placeholderavatar_128"
android:contentDescription="@string/avatar_content_description"
android:layout_gravity="right" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_columnSpan="1"
android:layout_columnWeight="1"
android:layout_gravity="left|center_vertical"
android:background="@color/play_bg"
android:text="Play"
android:typeface="monospace"
android:textSize="72sp"
/>
<android.widget.Space
android:layout_columnSpan="2"
android:layout_height="32dp"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_columnSpan="1"
android:layout_columnWeight="1"
android:src="@drawable/placeholderavatar_128"
android:layout_gravity="right"
android:contentDescription="@string/featured_question_content_description" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_columnSpan="1"
android:layout_columnWeight="1"
android:background="@color/play_bg"
android:layout_gravity="left|center_vertical"
android:text="what is the name of this app ? More apt description here ?"
android:typeface="serif"
android:textSize="20sp"
/>
<android.widget.Space
android:layout_columnSpan="2"
android:layout_height="32dp"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_columnSpan="2"
android:layout_gravity="center_horizontal"
android:src="@drawable/placeholderad_320_50"
android:contentDescription="ad" />
<com.github.mikephil.charting.charts.RadarChart
android:layout_columnSpan="2"
android:id="@+id/chart"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</GridLayout>
</FrameLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment