如何创建操作栏透明



http://www.mediafire.com/view/?wfua11aiand93a5

我上传了一张照片到meadiafire。

我想创建可见的操作栏和导航栏,以及如何在状态栏下创建布局,但我找不到任何方法。

也许这是一个简单的问题,但我不知道该怎么办。

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    this.requestWindowFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.login_layout);

使用此隐藏操作栏并创建 Custum 操作栏,您可以根据需要进行父级和设计 并像这样设置阿尔法

<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"
android:background="#ffffff"
tools:context="com.Test.webview.MainActivity" >
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:alpha="0.5"
    android:background="#000000" >
</LinearLayout>

最新更新