我看到一些应用程序在屏幕底部有一个略带半透明的黑色条,上面有按钮,中间有一个菜单栏。我想知道如何创造这样的东西。
答案 0 :(得分:4)
你可以这样做:
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#AAFFFFFF">
<ImageButton android:src="@drawable/left_arrow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"/>
<TextView android:text="@string/your_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentCenter="true"/>
<ImageButton android:src="@drawable/right_arrow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"/>
</RelativeLayout>
注意我挑选的android:background
颜色。这可能是错的。