http://www.mediafire.com/view/?wfua11aiand93a5
我将照片上传到meadiafire。
我想创建Actionbar和Navbar Visible,如何在状态栏下创建我的布局,但我找不到任何方法。
也许这是一个简单的问题,但我不知道该怎么做。
答案 0 :(得分:0)
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.login_layout);
使用此隐藏操作栏并创建自定义操作栏,您可以根据需要进行透明和设计,并像这样设置alpha
<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>