2016-06-13 20:43:38 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:paddingLeft="15dp"
|
|
|
|
android:paddingTop="15dp"
|
|
|
|
android:paddingRight="15dp"
|
|
|
|
>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2016-09-19 20:18:53 +00:00
|
|
|
<GridLayout
|
2016-06-13 20:43:38 +00:00
|
|
|
android:layout_width="match_parent"
|
2016-09-19 20:18:53 +00:00
|
|
|
android:layout_height="wrap_content">
|
2016-06-13 20:43:38 +00:00
|
|
|
|
|
|
|
<TextView
|
2016-09-16 05:09:26 +00:00
|
|
|
android:text="@string/select_plugin"
|
2016-06-13 20:43:38 +00:00
|
|
|
android:id="@+id/search_title"
|
2016-09-19 20:18:53 +00:00
|
|
|
android:textSize="20sp"
|
2016-06-13 20:43:38 +00:00
|
|
|
android:paddingLeft="30dp"
|
2016-09-19 20:18:53 +00:00
|
|
|
android:paddingRight="30dp"
|
|
|
|
android:layout_row="0"
|
|
|
|
android:layout_column="0"/>
|
2016-06-13 20:43:38 +00:00
|
|
|
|
|
|
|
<Spinner
|
2016-09-19 20:18:53 +00:00
|
|
|
android:textSize="20sp"
|
|
|
|
android:paddingLeft="30dp"
|
|
|
|
android:paddingStart="30dp"
|
2016-06-13 20:43:38 +00:00
|
|
|
android:id="@+id/search_spinner"
|
2016-09-19 20:18:53 +00:00
|
|
|
android:layout_row="0"
|
|
|
|
android:layout_column="1"/>
|
2016-06-13 20:43:38 +00:00
|
|
|
|
|
|
|
<TextView
|
2016-09-16 05:09:26 +00:00
|
|
|
android:text="@string/search_text"
|
2016-09-19 20:18:53 +00:00
|
|
|
android:textSize="20sp"
|
2016-06-13 20:43:38 +00:00
|
|
|
android:id="@+id/search_value_desc"
|
|
|
|
android:paddingLeft="30dp"
|
2016-09-19 20:18:53 +00:00
|
|
|
android:paddingRight="30dp"
|
|
|
|
android:layout_row="1"
|
|
|
|
android:layout_column="0"/>
|
2016-06-13 20:43:38 +00:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:imeOptions="actionSearch"
|
|
|
|
android:id="@+id/search_text"
|
|
|
|
style="@android:style/Animation.InputMethod"
|
|
|
|
android:inputType="text"
|
2016-09-19 20:18:53 +00:00
|
|
|
android:textSize="22sp"
|
|
|
|
android:layout_row="1"
|
|
|
|
android:layout_column="1"
|
|
|
|
android:layout_width="fill_parent" />
|
|
|
|
|
|
|
|
</GridLayout>
|
2016-06-13 20:43:38 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:weightSum="1">
|
|
|
|
|
|
|
|
<ListView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:id="@+id/searchlistView"
|
|
|
|
android:paddingLeft="30dp"
|
|
|
|
android:paddingRight="30dp"
|
2016-09-19 20:18:53 +00:00
|
|
|
android:textSize="15sp"
|
2016-09-16 05:09:26 +00:00
|
|
|
android:height="70dp"
|
2016-09-19 20:18:53 +00:00
|
|
|
android:layout_weight="0.8"
|
2016-09-16 05:09:26 +00:00
|
|
|
android:background="@drawable/searchlist"/>
|
|
|
|
|
2016-06-13 20:43:38 +00:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|