1
0
Fork 0
simtech-thunder/res/layout/activity_main.xml

45 lines
1.4 KiB
XML
Raw Normal View History

2014-05-21 11:49:09 +08:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
2014-05-06 16:53:23 +08:00
2014-05-21 11:49:09 +08:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
2014-05-21 16:13:46 +08:00
android:background="@drawable/ab_solid_dark_holo"
2014-05-21 15:13:35 +08:00
android:gravity="top" >
2014-05-21 11:49:09 +08:00
<EditText
2014-05-21 15:13:35 +08:00
android:textCursorDrawable="@null"
2014-05-21 11:49:09 +08:00
android:id="@+id/editText"
android:layout_width="fill_parent"
2014-05-21 15:13:35 +08:00
android:layout_height="fill_parent"
2014-05-21 11:49:09 +08:00
android:layout_weight="0.61"
android:ems="10"
android:singleLine="true"
2014-05-21 15:13:35 +08:00
android:inputType="textUri"
android:textColor="#ffffff">
2014-05-21 11:49:09 +08:00
<requestFocus />
</EditText>
2014-05-21 15:13:35 +08:00
<ImageButton
2014-05-21 11:49:09 +08:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2014-05-21 15:13:35 +08:00
android:src="@drawable/ic_menu_forward"
android:onClick="onGo"
android:contentDescription="Go!"
style="?android:attr/borderlessButtonStyle" />
2014-05-21 11:49:09 +08:00
</LinearLayout>
2014-05-21 15:13:35 +08:00
<WebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.63">
</WebView>
2014-05-06 16:53:23 +08:00
2014-05-21 11:49:09 +08:00
</LinearLayout>