src/main/res/layout/bonobo_chart_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/graph_choices" />
<Button
android:id="@+id/btn_RSI"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="RSI" />
<Button
android:id="@+id/btn_MACD"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="MACD" />
</LinearLayout>
<TextView
android:id="@+id/chart_text"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="fill_horizontal"
android:padding="0dp"
android:paddingTop="0dp"
android:singleLine="false"
android:textSize="16dp"></TextView>
<ImageView
android:id="@+id/chart_img"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<LinearLayout
android:id="@+id/lh"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal"
android:paddingBottom="10dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:text="@string/interval_choices" />
<Button
android:id="@+id/btn_7day"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:text="7 Days" />
<View
android:layout_width="0dp"
android:layout_height="1dp"
android:layout_weight="1"></View>
<Button
android:id="@+id/btn_52wk"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:text="52 Weeks" />
<View
android:layout_width="0dp"
android:layout_height="1dp"
android:layout_weight="1"></View>
<Button
android:id="@+id/btn_12mth"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:text="12 Months" />
</LinearLayout>
<Button
android:id="@+id/btn_rss"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:text="View Newsfeed" />
</LinearLayout>
</FrameLayout>