我想做的事情,实际上是一个“Action Bar”,像这样:
在开始一项活动时,我想替换操作栏下方的视图。main.xml 示例(简化):
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mainLinear"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- SIMPLIFIED ACTION BAR -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="65dp"
android:orientation="horizontal"
android:background="#333333">
<Button android:id="@+id/actionBtn"
android:text="@string/actionText"
android:textColor="#FFFFFF"
android:textSize="15sp"
android:layout_width="0.0dip"
android:layout_height="wrap_content"
android:contentDescription="@string/fillImage"
android:drawableTop="@android:drawable/ic_menu_agenda"
android:background="@drawable/tab_unselect"
android:layout_weight="1.0" />
</LinearLayout>
<Button
android:background="@drawable/btn_default_holo_light"
android:textSize="20sp"
android:id="@+id/BUTTON1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical|center_horizontal"
android:textColor="#000000"
android:text="@string/button"
android:layout_below="@+id/klassenBtn"/>
</LinearLayout>
在我的 MainActivity.java 中,我执行 setContentView(R.layout.main,xml)
在 web.xml 中:
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
现在我想在不同的活动 (WebActivity.java) 中用 webView1 (@+id/webView1) 替换 BUTTON1 (@+id/BUTTON1)
提前致谢!