<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="?android:attr/windowBackground"
|
android:orientation="vertical" >
|
|
<GridView
|
android:id="@+id/gv_episode3"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:layout_weight="1"
|
android:horizontalSpacing="8dp"
|
android:numColumns="5"
|
android:padding="8dp"
|
android:stretchMode="columnWidth"
|
android:verticalSpacing="8dp" >
|
</GridView>
|
|
<Button
|
android:id="@+id/btn_offline_cache"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="8dp"
|
android:layout_marginLeft="8dp"
|
android:layout_marginRight="8dp"
|
android:background="@drawable/selector_btn_recent"
|
android:text="@string/offline_cache"
|
android:textColor="@color/selector_btn_recent_text" />
|
|
</LinearLayout>
|