You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
891 B
26 lines
891 B
10 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:custom="http://schemas.android.com/apk/res-auto"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="horizontal" >
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/arrow_button"
|
||
|
android:layout_width="?attr/actionBarSize"
|
||
|
android:layout_height="?attr/actionBarSize"
|
||
|
android:layout_marginLeft="2dp"
|
||
|
android:layout_marginTop="2dp"
|
||
|
android:background="?attr/actionBarItemBackground"
|
||
|
android:clickable="true"
|
||
|
android:gravity="center" >
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/arrow"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
<include layout="@layout/search" />
|
||
|
|
||
|
</LinearLayout>
|