40

有没有办法在操作栏顶部呈现视图?我想创建一个小提示框,将用户指向操作栏中的项目。我知道Toast带有 set 视图的 a 将呈现在操作栏上方。有谁知道如何在视图中做到这一点?

我尝试使用FrameLayoutwithlayout_gravity="top"和膨胀视图,然后将其添加到正在运行的活动的布局中。

我提前感谢你。

编辑:这是我在想的图像: 在此处输入图像描述

编辑:也许需要更多细节。我正在寻找一种方法,或者找出是否可以将视图添加到活动的视图层次结构中,以便最后呈现。

与 CSS 类似,我希望此特定视图(图像中的蓝色浮动框)具有更高的 z-index 顺序,以便将其呈现在活动中的操作栏区域的顶部。视图与操作栏没有任何关联,它只是简单地绘制在它上面。

4

10 回答 10

34

我试图实现其他目标,但我需要与此类似的解决方案。我需要绘制一个覆盖整个屏幕的不透明层,甚至是操作栏——有点像对话框。我是这样做的:

ViewGroup vg = (ViewGroup)(getWindow().getDecorView().getRootView());
vg.addView(myNewView, params);

这可用于在屏幕上的任何位置绘制任何内容。

更新:你真的不应该再使用 ActionBar 了,如果你像 Android 推荐的那样使用 Toolbar,你一开始就不会遇到这个问题。工具栏会像常规视图一样进入您的活动 xml,您可以对其进行任何操作。并且它完全向后兼容。 https://developer.android.com/training/appbar/setting-up

于 2014-10-04T00:45:34.953 回答
21

在自己挣扎了一段时间之后,这是解决方案(经过测试 - 工作良好):

一般步骤是:

  1. 创建包装视图
  2. 分离屏幕视图子项,放置包装器,并附加子项
  3. 向孩子们夸大内容
  4. 控制包装器将帮助您完全控制操作栏及其下方的内容。
  5. 现在,使用包装器,您可以将“兄弟”添加到操作栏/主区域。那位兄弟正是你在图片中所描述的。

让我们看一些代码。

首先,创建一个方法来帮助创建包装视图。包装器将放置在整个屏幕和应用内容之间。作为一个ViewGroup,您以后可以完全控制它的内容。

private ViewGroup setContentViewWithWrapper(int resContent) {
        ViewGroup decorView = (ViewGroup) this.getWindow().getDecorView();
        ViewGroup decorChild = (ViewGroup) decorView.getChildAt(0);

        // Removing decorChild, we'll add it back soon
        decorView.removeAllViews();

        ViewGroup wrapperView = new FrameLayout(this);

        // You should set some ID, if you'll want to reference this wrapper in that manner later
        //
        // The ID, such as "R.id.ACTIVITY_LAYOUT_WRAPPER" can be set at a resource file, such as:
        //  <resources xmlns:android="http://schemas.android.com/apk/res/android">
        //      <item type="id" name="ACTIVITY_LAYOUT_WRAPPER"/>
        //  </resources>
        //
        wrapperView.setId(R.id.ACTIVITY_LAYOUT_WRAPPER);

        // Now we are rebuilding the DecorView, but this time we 
        // have our wrapper view to stand between the real content and the decor
        decorView.addView(wrapperView, LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
        wrapperView.addView(decorChild, decorChild.getLayoutParams());
        LayoutInflater.from(this).inflate(getActivityLayout(), 
                    (ViewGroup)((LinearLayout)wrapperView.getChildAt(0)).getChildAt(1), true);

        return wrapperView;
    }

现在,干扰常规Activity创建,而不是使用setContentView,使用我们创建的方法。

    @Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // DON'T CALL `setContentView`, 
    // we are replacing that line with this code:
    ViewGroup wrapperView = setContentViewWithWrapper(R.layout.activity_layout);

    // Now, because the wrapper view contains the entire screen (including the notification bar
    // which is above the ActionBar) I think you'll find it useful to know the exact Y where the 
    // action bar is located.
    // You can use something like that:
    ViewGroup actionBar = (ViewGroup)((LinearLayout)wrapperView.getChildAt(0)).getChildAt(0);
    int topOffset = actionBar.getTop();

    // Now, if you'll want to add a view:
    //  1. Create new view
    //  2. Set padding top - use "topOffset"
    //  3. Add the view to "wrapperView"
    //  4. The view should be set at front. if not - try calling to "bringToFront()"
}

就是这样。

笔记

编辑:请参阅@CristopherOyarzúnAltamirano 答案以获得对较新 Android 版本的进一步支持

祝你好运!

于 2013-06-05T16:36:36.187 回答
14

有一种更简单的方法可以实现这一点。ActionBar 将其布局保存在类 ActionBarContainer 中,该类仅继承自 FrameLayout。因此,为了在 ActionBar 上显示某些内容,您需要获取对 ActionBarContainer 的引用并将您自己的自定义 View 添加到其中。这是代码

    int abContainerViewID = getResources().getIdentifier("action_bar_container", "id", "android");     
    FrameLayout actionBarContainer = (FrameLayout)findViewById(abContainerViewID);      
    LayoutInflater myinflater = getLayoutInflater();        
    View customView = myinflater.inflate(R.layout.yourCustomeViewLayout, null);
    actionBarContainer.addView(customView);
于 2014-04-28T18:09:37.537 回答
5

我根据@Sean 的回答找到了这个解决方法:

        //This is for Jelly, ICS, Honeycomb
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB && Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR2){
            LayoutInflater.from(this).inflate(resContent, (ViewGroup)((LinearLayout)wrapperView.getChildAt(0)).getChildAt(1), true);}
        //This is for KitKat and Jelly 4.3
        else if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2){
            LayoutInflater.from(this).inflate(resContent, (ViewGroup) (((ViewGroup) wrapperView.getChildAt(0)).getChildAt(0)), true);}
        //This is for Ginger
        else{
            LayoutInflater.from(this).inflate(resContent, (ViewGroup) ((LinearLayout)((FrameLayout) wrapperView.getChildAt(0)).getChildAt(0)).getChildAt(1), true);}
于 2013-12-09T20:14:03.380 回答
5

我找到了一种更简单的方法来做到这一点。我刚刚将android:translationZ="10dp"应用于需要覆盖操作栏的视图。

我选择了 10dp,但它实际上可以是任何你想要的,只要它优于操作栏的高度

<ImageView
      android:layout_width="100dp"
      android:layout_height="100dp"
      android:translationZ="10dp"
      android:src="@drawable/potatoe" />

另外,不要担心 Android Studio 的以下警告:

“translationZ 不能与 API<21 一起使用”。

它将被忽略,但您并不在意,因为工具栏不应使用低于 21 的 API 覆盖您的视图。

于 2017-01-03T15:50:50.123 回答
1

尝试使用 ActionBar.setCustomView()。这是更改屏幕该区域外观的唯一方法。您不能将 View 粘贴到 ActionBar“上方”的区域中,因为该区域基本上由系统控制。另一方面,您可以为其提供自己的布局。

如果您更详细地解释您正在尝试做什么,受访者可能会有一些更好的设计理念。

于 2013-03-07T19:35:09.913 回答
1

https://github.com/michaelye/EasyDialogDemo

看上面的demo,可能对你有帮助

dialog.setLocation(new location[])//point in screen

您可以自己设置位置[]。

于 2015-04-29T03:15:12.820 回答
0

android:actionLayout在 menu.xml 文件中使用。

<?xml version="1.0" encoding="utf-8"?><menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/menu_id"
      android:title="@string/menu_string_to_show"
      android:icon="@drawable/ic_menu_icon_name"
      android:showAsAction="always"
      android:actionLayout="@layout/action_button_foo" /></menu>

然后创建你的 action_button_foo.xml 布局:

<?xml version="1.0" encoding="utf-8"?><TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/menu_string_to_show"
android:drawableLeft="@drawable/ic_menu_icon_name"
android:background="@drawable/bg_btn_action_bar"
android:clickable="true" />

要处理点击,请执行以下操作:

@Overridepublic boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.my_menu, menu);

final MenuItem item = menu.findItem(R.id.menu_id);
item.getActionView().setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
        onOptionsItemSelected(item);
    }
});

return super.onCreateOptionsMenu(menu);}

那是如果:)

于 2013-03-07T19:16:55.210 回答
0

(参考: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通过以下代码将此布局分配给 。示例代码允许将侦听器附加到自定义视图。

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);
}
} 
于 2013-03-07T20:09:43.260 回答
0

这里的解释太长了:

将主布局文件包装到顶级 ViewGroup 中(例如,将 CoordinatorLayout 包装到 FrameLayout 中),然后在新的顶级布局中注入或声明视图。该视图将出现在操作栏上方。

于 2020-03-10T17:31:09.240 回答