2015-11-21 12:42:14 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:id="@+id/fragmentsearchlist"
|
2015-10-18 18:43:08 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-11-21 12:42:14 +00:00
|
|
|
android:layout_gravity="center_horizontal|top"
|
2015-11-21 15:32:03 +00:00
|
|
|
android:weightSum="1"
|
|
|
|
android:paddingLeft="15dp">
|
2015-10-18 18:43:08 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
2015-11-21 12:42:14 +00:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:id="@+id/fragmentsearchdetails"
|
2015-10-18 18:43:08 +00:00
|
|
|
android:layout_width="match_parent"
|
2015-11-21 12:42:14 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-11-21 09:50:04 +00:00
|
|
|
android:weightSum="1">
|
2015-10-18 18:43:08 +00:00
|
|
|
|
2015-11-21 12:42:14 +00:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
2015-11-21 09:50:04 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-11-21 12:42:14 +00:00
|
|
|
android:text="Select Plugin"
|
|
|
|
android:id="@+id/search_title"
|
2015-11-21 15:32:03 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
|
|
android:paddingLeft="30dp"
|
|
|
|
android:paddingRight="30dp"/>
|
2015-10-18 18:43:08 +00:00
|
|
|
|
2015-11-21 12:42:14 +00:00
|
|
|
<Spinner
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/search_spinner"
|
2015-11-21 15:32:03 +00:00
|
|
|
android:layout_weight="0.4"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"/>
|
2015-11-21 09:50:04 +00:00
|
|
|
|
2015-11-21 15:32:03 +00:00
|
|
|
<Button
|
2015-11-21 12:42:14 +00:00
|
|
|
android:layout_width="wrap_content"
|
2015-11-21 15:32:03 +00:00
|
|
|
android:layout_height="45dp"
|
|
|
|
android:text="Search"
|
2015-11-21 12:42:14 +00:00
|
|
|
android:id="@+id/searchView"
|
2015-11-21 15:32:03 +00:00
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:layout_weight="0.07" />
|
2015-10-18 18:43:08 +00:00
|
|
|
|
2015-11-21 12:42:14 +00:00
|
|
|
</LinearLayout>
|
2015-10-18 18:43:08 +00:00
|
|
|
|
2015-11-21 12:42:14 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:id="@+id/fragmentsearchvalue"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:weightSum="1">
|
2015-10-18 18:43:08 +00:00
|
|
|
|
2015-11-21 12:42:14 +00:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
2015-10-18 18:43:08 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-11-21 15:32:03 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
2015-11-21 12:42:14 +00:00
|
|
|
android:text="Search Text"
|
2015-11-21 15:32:03 +00:00
|
|
|
android:id="@+id/search_value_desc"
|
|
|
|
android:paddingLeft="30dp"
|
|
|
|
android:paddingRight="30dp"/>
|
2015-11-21 09:50:04 +00:00
|
|
|
|
2015-11-21 12:42:14 +00:00
|
|
|
<EditText
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/search_text"
|
|
|
|
style="@android:style/Animation.InputMethod"
|
|
|
|
android:layout_weight="0.87" />
|
2015-11-21 09:50:04 +00:00
|
|
|
|
2015-11-21 12:42:14 +00:00
|
|
|
</LinearLayout>
|
2015-11-21 09:50:04 +00:00
|
|
|
|
2015-11-21 12:42:14 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:id="@+id/fragmentsearchresults"
|
|
|
|
android:weightSum="1">
|
2015-11-21 09:50:04 +00:00
|
|
|
|
2015-11-21 12:42:14 +00:00
|
|
|
<ListView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="333dp"
|
|
|
|
android:id="@+id/searchresultsdetails" />
|
|
|
|
</LinearLayout>
|
2015-10-18 18:43:08 +00:00
|
|
|
|
|
|
|
|
2015-11-21 12:42:14 +00:00
|
|
|
</LinearLayout>
|
2015-10-18 18:43:08 +00:00
|
|
|
|