|
|
@@ -0,0 +1,62 @@
|
|
|
+<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"
|
|
|
+ android:paddingBottom="@dimen/activity_vertical_margin"
|
|
|
+ android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
|
+ android:paddingRight="@dimen/activity_horizontal_margin"
|
|
|
+ android:paddingTop="@dimen/activity_vertical_margin"
|
|
|
+ tools:context="com.usai.redant.photo.ServerSettingActivity" >
|
|
|
+
|
|
|
+ <RadioGroup
|
|
|
+ android:id="@+id/radioGroup1"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignParentLeft="true"
|
|
|
+ android:layout_alignParentTop="true"
|
|
|
+ android:layout_marginTop="3dp" >
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/radio0"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:checked="true"
|
|
|
+ android:text="Internal address" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/et_ia"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:ems="10"
|
|
|
+ android:singleLine="true">
|
|
|
+
|
|
|
+ <requestFocus />
|
|
|
+ </EditText>
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/radio1"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="0dp"
|
|
|
+ android:text="External address" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/et_ea"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignLeft="@+id/radioGroup1"
|
|
|
+ android:layout_below="@+id/radioGroup1"
|
|
|
+ android:ems="10"
|
|
|
+ android:singleLine="true" >
|
|
|
+ </EditText>
|
|
|
+ </RadioGroup>
|
|
|
+
|
|
|
+ <ImageButton
|
|
|
+ android:id="@+id/ibtn_scan"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerHorizontal="true"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:src="@drawable/bar2" />
|
|
|
+
|
|
|
+</RelativeLayout>
|