如何在android中添加保存按钮到操作栏

时间:2015-01-24 17:17:28

标签: java android android-actionbar

如何在android studio的操作栏中添加保存和取消按钮? 我是Android开发的新手,所以任何帮助都会非常感激!!

1 个答案:

答案 0 :(得分:-1)

使用线性布局会在一行中添加两个按钮(我猜您只考虑这个),如果是,那么在代码中使用线性布局 将此代码添加到您的 布局/ 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>    

如果这有助于您点击正确的按钮