我已经自定义了默认标题栏,它在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中的标题栏类似。
答案 0 :(得分: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);
答案 1 :(得分:1)
花了几个小时后,我解决了我的问题。
将此android:theme=@android:style/Theme.Light
主题添加到活动是固定的问题,现在所有版本中显示的上述设备2.2屏幕截图的相同自定义标题栏都会正确显示。
答案 2 :(得分:0)
解决此问题的一种快速方法是将android:targetSdkVersion更改为预蜂窝版本。然后,应用程序将使用兼容模式呈现,标题栏应与旧设备匹配。