如何在ActionBar中显示自定义视图?

时间:2012-10-14 15:37:40

标签: android android-actionbar actionbarsherlock

我想在操作栏中显示自定义搜索(我正在使用ActionBarSherlock)。

我知道了:

enter image description here

但我想制作自定义布局(edittext字段)以占用整个可用宽度。

我已根据建议here实施了自定义布局。

我的自定义布局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的所有可用宽度?

请帮助。

6 个答案:

答案 0 :(得分:94)

有一个技巧。您所要做的就是使用RelativeLayout代替LinearLayout作为主要容器。为android:layout_gravity="fill_horizontal"设置它很重要。应该这样做。

答案 1 :(得分:36)

我自己也在努力,并尝试了Tomik的回答。 但是,只有当您向视图添加内容时,才会在开始时将布局设置为完全可用宽度。

添加视图时,您需要设置LayoutParams.FILL_PARENT

//I'm using actionbarsherlock, but it's the same.
LayoutParams layout = new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);
getSupportActionBar().setCustomView(overlay, layout); 

这样它完全填满了可用空间。 (您可能也需要使用Tomik的解决方案。)

答案 2 :(得分:6)

当您希望自定义视图占据整个操作栏时,Tomik和Peterdk的答案仍然有用,甚至隐藏原生标题。

但如果您希望自定义视图与标题并排(并在显示标题后填写所有剩余空间),那么我可以向您推荐用户Android-Developer的优秀答案:< / p>

https://stackoverflow.com/a/16517395/614880

他的底部代码对我来说非常合适。

答案 3 :(得分:6)

这就是它对我有用的方法(从上面的答案中它也显示了默认标题和我的自定义视图)。

ActionBar.LayoutParams layout = new ActionBar.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
// actionBar.setCustomView(view); //last view item must set to android:layout_alignParentRight="true" if few views are there 
actionBar.setCustomView(view, layout); // layout param width=fill/match parent
actionBar.setDisplayShowCustomEnabled(true);//must other wise its not showing custom view.

我注意到setCustomView(view)setCustomView(view,params)视图宽度=匹配/填充父级。 setDisplayShowCustomEnabled (boolean showCustom)

答案 4 :(得分:3)

例如,您可以定义包含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" >

</EditText> 

你可以做到

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);


    }

答案 5 :(得分:1)

在Android的启动器应用程序中有一个示例(我已经在这里创建了一个库),在处理壁纸选择的类中(&#34; WallpaperPickerActivity&#34;)。 / p>

该示例显示您需要设置自定义主题才能使其生效。遗憾的是,这对我来说只使用普通框架,而不是支持库。

这里是主题:

<强> styles.xml

 <style name="Theme.WallpaperPicker" parent="Theme.WallpaperCropper">
    <item name="android:windowBackground">@android:color/transparent</item>
    <item name="android:colorBackgroundCacheHint">@null</item>
    <item name="android:windowShowWallpaper">true</item>
  </style>

  <style name="Theme.WallpaperCropper" parent="@android:style/Theme.DeviceDefault">
    <item name="android:actionBarStyle">@style/WallpaperCropperActionBar</item>
    <item name="android:windowFullscreen">true</item>
    <item name="android:windowActionBarOverlay">true</item>
  </style>

  <style name="WallpaperCropperActionBar" parent="@android:style/Widget.DeviceDefault.ActionBar">
    <item name="android:displayOptions">showCustom</item>
    <item name="android:background">#88000000</item>
  </style>

<强>值-V19 / styles.xml

 <style name="Theme.WallpaperCropper" parent="@android:style/Theme.DeviceDefault">
    <item name="android:actionBarStyle">@style/WallpaperCropperActionBar</item>
    <item name="android:windowFullscreen">true</item>
    <item name="android:windowActionBarOverlay">true</item>
    <item name="android:windowTranslucentNavigation">true</item>
  </style>

  <style name="Theme" parent="@android:style/Theme.DeviceDefault.Wallpaper.NoTitleBar">
    <item name="android:windowTranslucentStatus">true</item>
    <item name="android:windowTranslucentNavigation">true</item>
  </style>
编辑:有一种更好的方法,它也适用于支持库。只需添加以下代码,而不是我上面写的代码:

getSupportActionBar().setDisplayShowCustomEnabled(true);