34 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?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">
 | 
						|
    <LinearLayout
 | 
						|
        android:orientation="horizontal"
 | 
						|
        android:layout_width="match_parent"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:layout_weight="0">
 | 
						|
        <EditText
 | 
						|
            android:layout_gravity="center"
 | 
						|
            android:id="@+id/query_text_view"
 | 
						|
            android:layout_width="wrap_content"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:singleLine="true"
 | 
						|
            android:selectAllOnFocus="true"
 | 
						|
            android:layout_weight="1"
 | 
						|
            android:inputType="text"/>
 | 
						|
        <Button
 | 
						|
            android:id="@+id/query_button"
 | 
						|
            android:layout_width="wrap_content"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:text="@string/button_search_book_contents"
 | 
						|
            android:layout_weight="0"
 | 
						|
            style="@android:style/Widget.Holo.Button.Borderless.Small"/>
 | 
						|
    </LinearLayout>
 | 
						|
    <ListView
 | 
						|
        android:id="@+id/result_list_view"
 | 
						|
        android:layout_width="match_parent"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:layout_weight="1"/>
 | 
						|
</LinearLayout>
 |