android 如何将保存按钮添加到操作栏
How to add save button to action bar in android
如何在 android 工作室中向我的操作栏添加保存和取消按钮?
我是 android 开发的新手,非常感谢任何帮助!!
使用线性布局将使两个按钮在一行中添加(我猜你只是在考虑这个)如果是这样,那么在你的代码中使用线性布局
将此代码添加到您的
layouts/action_bar_save_cancel.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="fill_horizontal"
android:orientation="horizontal" >
<LinearLayout
android:layout_alignParentLeft="true"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:id="@+id/action_bar_button_cancel"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="Cancel" />
<Button
android:id="@+id/action_bar_button_ok"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="Ok" />
</LinearLayout>
如果对您有帮助,请点击正确按钮
如何在 android 工作室中向我的操作栏添加保存和取消按钮? 我是 android 开发的新手,非常感谢任何帮助!!
使用线性布局将使两个按钮在一行中添加(我猜你只是在考虑这个)如果是这样,那么在你的代码中使用线性布局 将此代码添加到您的 layouts/action_bar_save_cancel.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="fill_horizontal"
android:orientation="horizontal" >
<LinearLayout
android:layout_alignParentLeft="true"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:id="@+id/action_bar_button_cancel"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="Cancel" />
<Button
android:id="@+id/action_bar_button_ok"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="Ok" />
</LinearLayout>
如果对您有帮助,请点击正确按钮