如何使工具栏透明并向后放置图像?

时间:2015-11-25 15:22:31

标签: android

我希望 <android.support.design.widget.AppBarLayout android:layout_width="match_parent" android:layout_height="wrap_content" app:elevation="0dp" android:theme="@style/AppTheme.AppBarOverlay"> <android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" android:background="@android:color/transparent" /> </android.support.design.widget.AppBarLayout> 透明。我有一个显示工具栏的活动,如下所示:

enter image description here

我在我的xml上有这个:

  IEnumerable<IVehicle> allVehicles = GetAllVehicles();

但是我不能让我的活动在我的工具栏后面显示...

我怎样才能做到这一点?

2 个答案:

答案 0 :(得分:2)

StackOverflow不允许我发表评论,因为我没有50点声称我在答案框中发表评论的原因

你可以在这里找到答案:

How to make the support Toolbar background transparent?

How to make Toolbar transparent?

答案 1 :(得分:1)

@ RAP的答案似乎有效。但请注意,如果将背景设置为透明,则意味着当用户触摸工具栏并执行您不想要的某些操作时,工具栏仍可单击。实现目标的其他替代方法是将其可见性设置为INVISIBLE

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);

toolbar.setVisibility(View.INVISIBLE);

// to make it appear again:
toolbar.setVisibility(View.VISIBLE);