blob: d2ed64b7e36517310020c0e593b31710a72e351d [file]
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin" >
<EditText
android:id="@+id/app_key"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/app_key"
android:lines="1"
android:singleLine="true" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<EditText
android:id="@+id/api_url"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="@string/api_url"
android:inputType="textUri"
android:lines="1"
android:singleLine="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="getStatus"
android:text="@string/button_get_status" />
</LinearLayout>
<View
android:layout_width="fill_parent"
android:layout_height="1dip"
android:background="#80000000" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<EditText
android:id="@+id/engine"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="@string/engine"
android:lines="1"
android:singleLine="true" />
<EditText
android:id="@+id/uid"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="@string/uid"
android:lines="1"
android:singleLine="true" />
<EditText
android:id="@+id/n"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@string/n"
android:inputType="number"
android:lines="1"
android:singleLine="true" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<EditText
android:id="@+id/attributes"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="@string/attributes"
android:lines="1"
android:singleLine="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="getRecs"
android:text="@string/button_get_recs" />
</LinearLayout>
<View
android:layout_width="fill_parent"
android:layout_height="1dip"
android:background="#80000000" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<EditText
android:id="@+id/view_uid"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="@string/uid"
android:lines="1"
android:singleLine="true" />
<EditText
android:id="@+id/view_iid"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="@string/iid"
android:lines="1"
android:singleLine="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="saveView"
android:text="@string/button_save_view" />
</LinearLayout>
<View
android:layout_width="fill_parent"
android:layout_height="1dip"
android:background="#80000000" />
<TextView
android:id="@+id/openudid"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/openudid"
android:textIsSelectable="true" />
<View
android:layout_width="fill_parent"
android:layout_height="1dip"
android:background="#80000000" />
<TextView
android:id="@+id/console_output"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:hint="@string/console_output"
android:textIsSelectable="true" />
</LinearLayout>