我认为这不能仅通过主题化来实现。您需要创建一个Activity
包含标题栏的摘要并包装扩展Activity
类设置的内容视图。这是一个例子:
XML
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<include
android:id="@+id/titleBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
layout="@layout/titlebar" />
<FrameLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
抽象活动
public abstract class TitleBarActivity extends Activity {
@Override
protected void onCreate( Bundle savedInstanceState ) {
super.onCreate( savedInstanceState );
super.setContentView( R.layout.title_bar_activity );
}
@Override
public void setContentView( int layoutResId ) {
FrameLayout contentFrameLayout = (FrameLayout) findViewById( R.id.content );
contentFrameLayout.removeAllViews();
getLayoutInflater().inflate( layoutResId, contentFrameLayout );
}
}
这是一个非常简单的实现,但应该让您大致了解需要做什么。现在,对于任何扩展的 Activity,TitleBarActivity
默认情况下您已经在顶部拥有标题栏。您希望活动控制的标题的任何自定义,添加方法TitleBarActivity
来做到这一点。