(参照:http ://www.vogella.com/articles/AndroidActionBar/article.html )
のカスタムビューカスタムビューActionBar
をに追加することもできますActionBar
。このために、クラスのsetCustomView
メソッドを使用します。また、フラグを渡してActionView
、メソッドを介してカスタムビューの表示を有効にする必要があります。setDisplayOptions()
ActionBar.DISPLAY_SHOW_CUSTOM
たとえば、EditText
要素を含むレイアウトファイルを定義できます。
<?xml version="1.0" encoding="utf-8"?>
<EditText xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/searchfield"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:inputType="textFilter" >
ActionBar
このレイアウトは、次のコードを介してビアに割り当てることができます。サンプルコードallowは、リスナーをカスタムビューにアタッチします。
package com.vogella.android.actionbar.customviews;
import android.app.ActionBar;
import android.app.Activity;
import android.os.Bundle;
import android.view.KeyEvent;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.TextView.OnEditorActionListener;
import android.widget.Toast;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ActionBar actionBar = getActionBar();
// add the custom view to the action bar
actionBar.setCustomView(R.layout.actionbar_view);
EditText search = (EditText) actionBar.getCustomView().findViewById(R.id.searchfield);
search.setOnEditorActionListener(new OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId,
KeyEvent event) {
Toast.makeText(MainActivity.this, "Search triggered",
Toast.LENGTH_LONG).show();
return false;
}
});
actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM
| ActionBar.DISPLAY_SHOW_HOME);
}
}