我想从左侧的选项菜单中对齐一个菜单项,正如您在联系人应用程序中看到的那样(在编辑联系人时)。我必须做什么?我是否必须更改您的 xml 属性或在 Java 代码中进行更改?
最好的问候,rnng
我想从左侧的选项菜单中对齐一个菜单项,正如您在联系人应用程序中看到的那样(在编辑联系人时)。我必须做什么?我是否必须更改您的 xml 属性或在 Java 代码中进行更改?
最好的问候,rnng
我从这里查找了联系人应用程序的源代码。
代码说我必须使用这个 XML 代码为 ActionBar 创建一个自定义布局:
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/save_menu_item"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:divider="?android:attr/dividerVertical"
android:showDividers="end"
android:dividerPadding="12dip"
android:orientation="horizontal">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal"
android:duplicateParentState="true"
style="?android:attr/actionButtonStyle">
<ImageView
android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginRight="8dip"
android:src="@drawable/ic_menu_done_holo_dark"
android:description="@string/menu_done" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginRight="20dip"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@color/action_bar_button_text_color"
android:text="@string/menu_done"
style="@android:style/Widget.Holo.ActionBar.TabText" />
</LinearLayout>
</LinearLayout>
</FrameLayout>
这个Java代码在这里:
// Inflate a custom action bar that contains the "done" button for saving changes
// to the contact
LayoutInflater inflater = (LayoutInflater) getSystemService
(Context.LAYOUT_INFLATER_SERVICE);
View customActionBarView = inflater.inflate(R.layout.editor_custom_action_bar, null);
View saveMenuItem = customActionBarView.findViewById(R.id.save_menu_item);
saveMenuItem.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
mFragment.doSaveAction();
}
// Show the custom action bar but hide the home icon and title
actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM,
ActionBar.DISPLAY_SHOW_CUSTOM | ActionBar.DISPLAY_SHOW_HOME |
ActionBar.DISPLAY_SHOW_TITLE);
actionBar.setCustomView(customActionBarView);
使用了以下文件:
这可能正在使用ActionMode
具有这种外观的 ,包括左侧的复选标记按钮。
或者,这可能正在使用setDisplayUseLogoEnabled()
和android:logo
属性 on <application>
。
或者,这可能是使用自定义 UI 而不是使用普通操作栏。