1

我在我的应用程序中使用自定义标题栏,但每次创建新布局时,我都必须调用:

<include
    android:id="@+id/titlebar"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="@integer/titlebar_weight"
    layout="@layout/titlebar" />

而是在所有布局中调用它,我如何在主题中定义它(换句话说:为主题定义默认布局)?

我的默认布局:

默认布局

4

4 回答 4

3

windowTitleStyle尽管可以通过主题( , windowTitleSize, )对旧标题栏进行一些自定义windowTitleBackgroundStyle,但您无法设置自己的布局。标题栏也被 Android 3.0 中的 ActionBar 取代,所以无论如何这对你没有帮助。

在主题中设置默认布局是不可能的,至少我找不到办法。但是在添加标题布局时,您仍然有几个选项可以减少重复:

  • 使用您的标题和内容的 ViewStub 创建一个主布局,然后通过代码设置 inflatedId。
  • 考虑使用片段构建屏幕,并以编程方式从主布局中添加/删除它们。
  • 以编程方式在基础活动中添加标题(由 user1527136 建议)
  • 包括它(这就是你已经在做的,而且还不错恕我直言)
于 2012-12-01T11:21:29.040 回答
1

我建议不要自己创建操作栏,您可以尝试:

Actionbar Sherlock或 ActionbarCompat(来自 SDK 中的 Google 示例)。

于 2012-08-25T11:17:05.667 回答
0

我认为这不能仅通过主题化来实现。您需要创建一个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来做到这一点。

于 2012-12-03T03:06:09.543 回答
0
<resources>
    <style name="Theme.Transparent" parent="android:Theme">
        <item name="android:windowIsTranslucent">true</item>
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:windowContentOverlay">@null</item>
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowIsFloating">true</item>
        <item name="android:backgroundDimEnabled">false</item>
    </style>    
</resources> 



<activity 

    android:theme="@style/Theme.Transparent" 

</activity> 
于 2012-08-25T11:47:17.983 回答