ฉันต้องการแสดงการค้นหาที่กำหนดเองในแถบการดำเนินการ (ฉันใช้ ActionBarSherlock สำหรับสิ่งนั้น)
ฉันเข้าใจ:
แต่ฉันต้องการสร้างเค้าโครงที่กำหนดเอง (ช่องแก้ไขข้อความ) เพื่อใช้ความกว้างทั้งหมดที่มีอยู่
ผมเคยนำมาใช้รูปแบบที่กำหนดเองตามที่แนะนำที่นี่
มีเค้าโครงที่กำหนดเองของฉันsearch.xml
:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
style="?attr/actionButtonStyle"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_gravity="fill_horizontal"
android:focusable="true" >
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|fill_horizontal" >
<EditText
android:id="@+id/search_query"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="left|center"
android:background="@drawable/bg_search_edit_text"
android:imeOptions="actionSearch"
android:inputType="text" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right|center_vertical"
android:src="@drawable/ic_search_arrow" />
</FrameLayout>
</LinearLayout>
และในMyActivity
:
ActionBar actionBar = getSupportActionBar();
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setDisplayShowCustomEnabled(true);
actionBar.setDisplayShowTitleEnabled(false);
actionBar.setIcon(R.drawable.ic_action_search);
LayoutInflater inflator = (LayoutInflater) this .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = inflator.inflate(R.layout.search, null);
actionBar.setCustomView(v);
ฉันจะสร้างเลย์เอาต์แบบกำหนดเองเพื่อใช้ความกว้างทั้งหมดที่มีอยู่ได้actionBar
อย่างไร?
ช่วยด้วย.