如何在操作栏下添加透明栏,如下所示:
我是初学者,请提供建议
更新
这是我的代码,但布局上没有出现透明条,因为地图片段在透明条上方,
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<include
layout="@layout/notification_bar"
android:id="@+id/notification_bar"/>
<fragment
android:id="@+id/map_fragment"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/bottom_menu"
class="com.android.fragment.MapFragment"
android:visibility="invisible" />
</RelativeLayout>
和
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="#99000000"
android:layout_width="fill_parent"
android:layout_height="90dp"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:id="@+id/notification_bar" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="39dp"
android:layout_marginTop="37dp" >
</LinearLayout>
</LinearLayout>
答案 0 :(得分:0)
这是一个简单的例子:
activity_main.xml的代码
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.testdesignapp.MainActivity" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginBottom="10dp"
android:alpha="0.5"
android:background="#000"
android:elevation="1dp"
android:gravity="top"
android:orientation="horizontal"
android:padding="5dp" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Here is some random overlay text example"
android:textColor="#fff" />
</LinearLayout>
<fragment
android:id="@+id/map_fragment"
android:name="com.example.testdesignapp.FooFragment"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:visibility="invisible" />
</RelativeLayout>
我使用android:elevation
制作了片段叠加层,你也可以使用android:translationZ
,它可以在API 21版本中使用。我不知道在片段上实现这种叠加的任何其他方法