116 lines
4.5 KiB
XML
116 lines
4.5 KiB
XML
<android.support.v4.widget.DrawerLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/drawer_layout"
|
|
android:background="#8ae6e6e6"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".SubscriptionsActivity">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/layoutMain"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/layoutContent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:layout_centerInParent="true"
|
|
android:layout_margin="10dp"
|
|
android:layout_marginBottom="20dp"
|
|
android:padding="8dp"
|
|
android:background="@drawable/layout_bg"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/lbl_subscription_title"
|
|
android:text="Subscriptions"
|
|
android:textStyle="bold"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"/>
|
|
|
|
<TableLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="3dp"
|
|
android:gravity="center"
|
|
android:stretchColumns="1"
|
|
android:layout_below="@+id/lbl_subscription_title"
|
|
android:id="@+id/tableLayout2">
|
|
|
|
<TableRow android:padding="1dp">
|
|
<TextView
|
|
android:id="@+id/lbl_subscription_1_title"
|
|
android:text="No Ads"
|
|
android:textStyle="bold"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"/>
|
|
</TableRow>
|
|
<TableRow>
|
|
<TextView
|
|
android:id="@+id/lbl_subscription_1_desription"
|
|
android:text="You can subscripe this option to have no more ads. This is a recuring subscriptions for $5 a month"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp" />
|
|
</TableRow>
|
|
<TableRow>
|
|
<Button
|
|
style="?android:attr/buttonStyleSmall"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Purchase"
|
|
android:id="@+id/btn_subscription_1" />
|
|
</TableRow>
|
|
|
|
<TableRow android:padding="1dp">
|
|
<TextView
|
|
android:id="@+id/lbl_subscription_2_title"
|
|
android:text="Unlimited Access"
|
|
android:textStyle="bold"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"/>
|
|
</TableRow>
|
|
<TableRow>
|
|
<TextView
|
|
android:id="@+id/lbl_subscription_2_description"
|
|
android:text="You can get unlimimited access to the report map with this reccuring subscription for $10 a month"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp" />
|
|
</TableRow>
|
|
<TableRow>
|
|
<Button
|
|
style="?android:attr/buttonStyleSmall"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Purchase"
|
|
android:id="@+id/btn_subscription_2" />
|
|
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
<ListView
|
|
android:id="@+id/navList"
|
|
android:layout_width="200dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="start"
|
|
android:background="#ffffff"/>
|
|
|
|
</android.support.v4.widget.DrawerLayout> |