1

我已经自定义了默认标题栏,它在 2.x、3.x 设备中按预期显示,但在 4.x 设备中没有显示。

在设备 2.2 上:
在此处输入图像描述

在设备 4.1.2 上:
在此处输入图像描述

这是onCreate里面的代码:

public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        TextView localTextView = (TextView) getWindow().findViewById(
                android.R.id.title);
        if (localTextView != null) {
            ViewParent localViewParent = localTextView.getParent();
            if ((localViewParent != null)
                    && ((localViewParent instanceof FrameLayout))) {
                View localView = ((LayoutInflater) getSystemService("layout_inflater"))
                        .inflate(R.layout.logout_button, null);
                UIImageButton localUIImageButton = (UIImageButton) localView
                        .findViewById(R.id.logoutButton);
                Rect localRect = new Rect();
                Window localWindow = getWindow();
                localWindow.getDecorView().getWindowVisibleDisplayFrame(
                        localRect);
                int i = localRect.top;
                int j = localWindow.findViewById(android.R.id.title).getTop() - i;
                PrintStream localPrintStream = System.out;
                Object[] arrayOfObject = new Object[1];
                arrayOfObject[0] = Integer.valueOf(j);
                localPrintStream.printf("%d", arrayOfObject);
                localUIImageButton.setMaxHeight(j);
                ((FrameLayout) localViewParent).addView(localView);
            }
        }
    }

这是清单代码:

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="15" />

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" >
    <activity
        android:name=".MainActivity"
        android:label="@string/title_activity_main" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

我希望 4.x 设备中的标题栏与 2.x 中的类似。

4

3 回答 3

1

对于 Android 4.0 及更高版本,您需要自定义操作栏。见:http: //developer.android.com/guide/topics/ui/actionbar.html

与此类似的东西。

ActionBar actionBar = getSupportActionBar();

LayoutInflater inflator = (LayoutInflater).getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = inflator.inflate(R.layout.logout_button, null); // your logout button
actionBar.setCustomView(v);
于 2013-03-21T21:29:48.183 回答
1

花了几个小时后,我解决了我的问题。将此android:theme=@android:style/Theme.Light主题添加到活动是已解决的问题,现在与设备 2.2 屏幕截图相同的自定义标题栏可以正确显示在所有版本中。

于 2013-03-22T20:16:21.663 回答
0

解决此问题的一种快速方法是将 android:targetSdkVersion 更改回预蜂窝版本。然后应用程序将使用兼容模式呈现,并且标题栏应与旧设备匹配。

于 2013-03-21T21:19:22.970 回答