You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
195 lines
7.8 KiB
195 lines
7.8 KiB
<!-- |
|
Copyright 2014 ACR Development |
|
--> |
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
android:id="@+id/main_layout" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
android:background="@color/gray_medium" |
|
android:orientation="vertical" > |
|
|
|
<LinearLayout |
|
android:id="@+id/progressWrapper" |
|
android:layout_width="match_parent" |
|
android:layout_height="wrap_content" |
|
android:background="?progressColor" |
|
android:orientation="vertical" > |
|
|
|
<ProgressBar |
|
android:id="@+id/activity_bar" |
|
android:layout_width="match_parent" |
|
android:layout_height="2dp" |
|
android:indeterminate="false" |
|
android:indeterminateOnly="false" |
|
android:maxHeight="2dp" |
|
android:minHeight="2dp" |
|
android:progressDrawable="@drawable/progress" /> |
|
</LinearLayout> |
|
|
|
<!-- A DrawerLayout is intended to be used as the top-level content view using match_parent for both width and height to consume the full space available. --> |
|
|
|
<android.support.v4.widget.DrawerLayout |
|
xmlns:android="http://schemas.android.com/apk/res/android" |
|
android:id="@+id/drawer_layout" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" > |
|
|
|
<!-- |
|
As the main content view, the view below consumes the entire |
|
space available using match_parent in both dimensions. |
|
--> |
|
|
|
<FrameLayout |
|
android:id="@+id/content_frame" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" /> |
|
|
|
<!-- |
|
android:layout_gravity="start" tells DrawerLayout to treat |
|
this as a sliding drawer on the left side for left-to-right |
|
languages and on the right side for right-to-left languages. |
|
The drawer is given a fixed width in dp and extends the full height of |
|
the container. A solid background is used for contrast |
|
with the content view. |
|
--> |
|
|
|
<RelativeLayout |
|
android:id="@+id/drawer" |
|
android:layout_width="300dp" |
|
android:layout_height="match_parent" |
|
android:layout_gravity="start" |
|
android:background="#e4e4e4" |
|
android:clickable="true" |
|
android:orientation="vertical" > |
|
|
|
<TextView |
|
android:id="@+id/new_tab_button" |
|
android:layout_width="match_parent" |
|
android:layout_height="wrap_content" |
|
android:layout_alignParentTop="true" |
|
android:background="?android:attr/listChoiceBackgroundIndicator" |
|
android:gravity="center_vertical" |
|
android:minHeight="?android:attr/listPreferredItemHeightSmall" |
|
android:paddingLeft="16dp" |
|
android:paddingRight="16dp" |
|
android:text="@string/action_new_tab" |
|
android:textAppearance="?android:attr/textAppearanceMedium" |
|
android:textColor="#000000" /> |
|
|
|
<View |
|
android:id="@+id/view" |
|
android:layout_width="fill_parent" |
|
android:layout_height="1dp" |
|
android:layout_below="@+id/new_tab_button" |
|
android:background="#bababa" /> |
|
|
|
<ListView |
|
android:id="@+id/left_drawer" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
android:layout_above="@+id/lineView" |
|
android:layout_below="@+id/view" |
|
android:choiceMode="singleChoice" |
|
android:divider="#bababa" |
|
android:dividerHeight="1dp" /> |
|
|
|
<View |
|
android:id="@+id/lineView" |
|
android:layout_width="fill_parent" |
|
android:layout_height="1dp" |
|
android:layout_above="@+id/linearLayout1" |
|
android:background="#bababa" /> |
|
|
|
<LinearLayout |
|
android:id="@+id/linearLayout1" |
|
android:layout_width="match_parent" |
|
android:layout_height="48dp" |
|
android:layout_alignParentBottom="true" |
|
android:baselineAligned="false" |
|
android:orientation="horizontal" |
|
android:weightSum="2" > |
|
|
|
<RelativeLayout |
|
android:id="@+id/action_back" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
android:layout_weight="1" |
|
android:background="?android:attr/listChoiceBackgroundIndicator" |
|
android:clickable="true" > |
|
|
|
<ImageView |
|
android:layout_width="wrap_content" |
|
android:layout_height="wrap_content" |
|
android:layout_centerInParent="true" |
|
android:contentDescription="@string/action_back" |
|
android:paddingBottom="4dp" |
|
android:paddingLeft="4dp" |
|
android:paddingRight="4dp" |
|
android:paddingTop="4dp" |
|
android:src="@drawable/ic_action_back" /> |
|
</RelativeLayout> |
|
|
|
<View |
|
android:layout_width="1dp" |
|
android:layout_height="48dp" |
|
android:background="#bababa" /> |
|
|
|
<RelativeLayout |
|
android:id="@+id/action_forward" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
android:layout_weight="1" |
|
android:background="?android:attr/listChoiceBackgroundIndicator" |
|
android:clickable="true" > |
|
|
|
<ImageView |
|
android:layout_width="wrap_content" |
|
android:layout_height="wrap_content" |
|
android:layout_centerInParent="true" |
|
android:contentDescription="@string/action_forward" |
|
android:paddingBottom="4dp" |
|
android:paddingLeft="4dp" |
|
android:paddingRight="4dp" |
|
android:paddingTop="4dp" |
|
android:src="@drawable/ic_action_forward" /> |
|
</RelativeLayout> |
|
</LinearLayout> |
|
</RelativeLayout> |
|
|
|
<LinearLayout |
|
android:id="@+id/right_drawer" |
|
android:layout_width="300dp" |
|
android:layout_height="match_parent" |
|
android:layout_gravity="end" |
|
android:background="#e4e4e4" |
|
android:clickable="true" |
|
android:orientation="vertical" > |
|
|
|
<TextView |
|
android:id="@+id/textView1" |
|
android:layout_width="match_parent" |
|
android:layout_height="wrap_content" |
|
android:background="#33b5e5" |
|
android:gravity="center_vertical" |
|
android:minHeight="?android:attr/listPreferredItemHeightSmall" |
|
android:paddingLeft="16dp" |
|
android:paddingRight="16dp" |
|
android:text="@string/action_bookmarks" |
|
android:textAppearance="?android:attr/textAppearanceMedium" |
|
android:textColor="#000000" /> |
|
|
|
<View |
|
android:layout_width="fill_parent" |
|
android:layout_height="1dp" |
|
android:background="#bababa" /> |
|
|
|
<ListView |
|
android:id="@+id/right_drawer_list" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
android:divider="#bababa" |
|
android:dividerHeight="1dp" /> |
|
</LinearLayout> |
|
</android.support.v4.widget.DrawerLayout> |
|
|
|
</LinearLayout> |