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.
142 lines
4.9 KiB
142 lines
4.9 KiB
12 years ago
|
<RelativeLayout 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"
|
||
|
tools:context=".MainActivity" >
|
||
|
|
||
|
<ScrollView
|
||
|
android:id="@+id/backgroundScroll"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:scrollbars="none" >
|
||
|
|
||
|
<RelativeLayout
|
||
|
android:id="@+id/background"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content" >
|
||
|
|
||
|
<HorizontalScrollView
|
||
|
android:id="@+id/tabScroll"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="32dp"
|
||
|
android:layout_alignParentLeft="true"
|
||
|
android:layout_alignParentRight="true"
|
||
|
android:layout_alignParentTop="true"
|
||
|
android:scrollbars="horizontal|none"
|
||
|
android:fadingEdge="none">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/Layout"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="horizontal" >
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/tabLayout"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="match_parent" >
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="match_parent" >
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/newTab"
|
||
|
android:layout_width="32dp"
|
||
|
android:layout_height="32dp"
|
||
|
android:src="@drawable/new_tab" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</LinearLayout>
|
||
|
</HorizontalScrollView>
|
||
|
<RelativeLayout
|
||
|
android:id="@+id/relativeLayout1"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="48dp"
|
||
|
android:layout_alignParentLeft="true"
|
||
|
android:layout_alignParentRight="true"
|
||
|
android:layout_below="@id/tabScroll"
|
||
|
android:background="@drawable/bar" >
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/options"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_alignParentBottom="true"
|
||
|
android:layout_alignParentRight="true"
|
||
|
android:layout_alignParentTop="true"
|
||
|
android:paddingLeft="10dp"
|
||
|
android:paddingRight="10dp"
|
||
|
android:src="@drawable/options" />
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/exit"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_alignParentBottom="true"
|
||
|
android:layout_alignParentLeft="true"
|
||
|
android:layout_alignParentTop="true"
|
||
|
android:paddingLeft="10dp"
|
||
|
android:paddingRight="10dp"
|
||
|
android:src="@drawable/exit" />
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/forward"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_alignParentBottom="true"
|
||
|
android:layout_alignParentTop="true"
|
||
|
android:layout_toRightOf="@+id/exit"
|
||
|
android:paddingLeft="10dp"
|
||
|
android:paddingRight="10dp"
|
||
|
android:src="@drawable/forward" />
|
||
|
<RelativeLayout
|
||
|
android:id="@+id/refreshLayout"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_alignParentTop="true"
|
||
|
android:layout_toRightOf="@+id/forward">
|
||
|
<ImageView
|
||
|
android:id="@+id/refresh"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_alignParentTop="true"
|
||
|
android:layout_toRightOf="@+id/forward"
|
||
|
android:paddingBottom="10dp"
|
||
|
android:paddingLeft="10dp"
|
||
|
android:paddingRight="10dp"
|
||
|
android:paddingTop="10dp"
|
||
|
android:src="@drawable/refresh" />
|
||
|
</RelativeLayout>
|
||
|
<EditText
|
||
|
android:id="@+id/enterUrl"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_centerVertical="true"
|
||
|
android:layout_toLeftOf="@+id/options"
|
||
|
android:layout_toRightOf="@+id/refreshLayout"
|
||
|
android:ems="10"
|
||
|
android:hint="@string/google"
|
||
|
android:imeOptions="actionGo"
|
||
|
android:inputType="textUri"
|
||
|
android:singleLine="true" />
|
||
|
|
||
|
</RelativeLayout>
|
||
|
<RelativeLayout
|
||
|
android:id="@+id/holder"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_below="@+id/relativeLayout1">
|
||
|
<FrameLayout
|
||
|
android:id="@+id/webFrame"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_below="@+id/relativeLayout1">
|
||
|
</FrameLayout>
|
||
|
</RelativeLayout>
|
||
|
</RelativeLayout>
|
||
|
</ScrollView>
|
||
|
</RelativeLayout>
|