web-dev-qa-db-ja.com

androidのアクションバーでボタンを作成する方法

私はAndroidアクションバーにボタンが必要なアプリケーションです。これらは私のアクティビティであり、Javaファイルです。そのため、右側にボタンが必要です。私のツールバーの。事前に感謝します。

content_b2_bdeliveries.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:app="http://schemas.Android.com/apk/res-auto"
xmlns:tools="http://schemas.Android.com/tools"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
Android:orientation="vertical"
Android:paddingBottom="@dimen/activity_vertical_margin"
Android:paddingLeft="@dimen/activity_horizontal_margin"
Android:paddingRight="@dimen/activity_horizontal_margin"
Android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.ideabiz.riderapplication.ui.B2BDeliveriesActivity"
tools:showIn="@layout/activity_b2_bdeliveries">
//remaining code;
</LinearLayout>

activity_b2_bdeliveries.xml:

<?xml version="1.0" encoding="utf-8"?>
<Android.support.design.widget.CoordinatorLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:app="http://schemas.Android.com/apk/res-auto"
xmlns:tools="http://schemas.Android.com/tools"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
Android:fitsSystemWindows="true"
tools:context="com.ideabiz.riderapplication.ui.B2BDeliveriesActivity">

<Android.support.design.widget.AppBarLayout
    Android:layout_width="match_parent"
    Android:layout_height="wrap_content"
    Android:theme="@style/AppTheme.AppBarOverlay">

</Android.support.design.widget.AppBarLayout>

<include layout="@layout/content_b2_bdeliveries" />

</Android.support.design.widget.CoordinatorLayout>

B2BDeliveriesActivity.Java:

public class B2BDeliveriesActivity extends AppCompatActivity {
private final String TAG_NAME="B2BActivity";
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_b2_bdeliveries);
    sharedPreferences = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
    ActionBar actionBar = getSupportActionBar();
    //Log.d(TAG_NAME,actionBar.toString());
    if (actionBar != null) {
        try {
            actionBar.setDisplayHomeAsUpEnabled(true);
            } catch (Exception e) {
                Crashlytics.logException(e);
                Log.d(TAG_NAME, "Null Pointer from setDisplayHomeAsUpEnabled" + e.getMessage());
                Utilities.issueTokenUpload("Null Pointer from setDisplayHomeAsUpEnabled" + e, sharedPreferences.getInt("tripId", 999999), sharedPreferences.getString("driverPhoneNo", "9999999999"), sharedPreferences.getString("driverName", "default"), getResources().getString(R.string.version));
            }
    }
}

sample requirement picture

18
// create an action bar button
@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.mymenu, menu);
    return super.onCreateOptionsMenu(menu);
}

// handle button activities
@Override
public boolean onOptionsItemSelected(MenuItem item) {
    int id = item.getItemId();

    if (id == R.id.mybutton) {
    // do something here
    }
    return super.onOptionsItemSelected(item);
}

mymenu.xmlはres/menuディレクトリ内になければなりません(res/menuがない場合は、res内に「menu」という名前のディレクトリを作成してください)、次のようになります。

<menu xmlns:Android="http://schemas.Android.com/apk/res/Android"
  xmlns:app="http://schemas.Android.com/apk/res-auto">
<item
    Android:id="@+id/mybutton"
    Android:title=""
    app:showAsAction="always"
    Android:icon="@drawable/mybuttonicon"
    />
</menu>
54
Onur Çevik

ActionBarのUIをカスタマイズする場合、ツールバーをActionBarとして使用できます。同じことを行う手順は次のとおりです。

  1. アクティビティレイアウトxmlにAppBarLayoutの子として以下のコードを追加します。

    <Android.support.v7.widget.Toolbar
            Android:id="@+id/toolbar"
            Android:layout_width="match_parent"
            Android:layout_height="?attr/actionBarSize" >
    
            <LinearLayout
                Android:layout_width="match_parent"
                Android:layout_height="wrap_content"
                Android:weightSum="1">
    
                <TextView
                    Android:id="@+id/title"
                    Android:layout_width="0dp"
                    Android:layout_height="wrap_content"
                    Android:layout_weight="1"
                    Android:text="ActionBar Title"/>
    
                <Button
                    Android:layout_width="wrap_content"
                    Android:layout_height="wrap_content" />
    
            </LinearLayout>
    
        </Android.support.v7.widget.Toolbar>
    
  2. Activity onCreate()メソッドに以下のコードを追加して、ツールバーをActionBarとして作成します。

    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);
    getSupportActionBar().setDisplayHomeAsUpEnabled(true);
    
  3. AndroidManifest.xmlで、アクティビティに次のテーマを追加します。

    Android:theme="@style/AppTheme.NoActionBar"
    
  4. Styles.xmlに次のコードを追加します。

    <style name="AppTheme.NoActionBar">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
    </style>
    
6
Gautam Malik

前に誰かがこの質問に答えていた

これを行うには2つの手順があります。

  1. Res/menuにメニューを作成(my_menu.xmlという名前)

    <menu xmlns:Android="http://schemas.Android.com/apk/res/Android" >
    <item
        Android:id="@+id/action_cart"
        Android:icon="@drawable/cart"
        Android:orderInCategory="100"
        Android:showAsAction="always"/> 
    </menu>
    
  2. OnCreateOptionsMenuとinflateメニューをオーバーライドします

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
    MenuInflater inflater = getMenuInflater();
    inflater.inflate(R.menu.my_menu, menu);
    return true;
    }
    

訪問: ActionBar(Android)にボタンを追加する方法?

4
Ahmad Payan

メニューのxmlファイルをres/menuディレクトリ(この場合はmenu_main.xml)に作成します。

<menu xmlns:Android="http://schemas.Android.com/apk/res/Android"
    xmlns:app="http://schemas.Android.com/apk/res-auto"
    xmlns:tools="http://schemas.Android.com/tools"
    tools:context="com.example.rashish.myapplication.MainActivity">
    <item
        Android:id="@+id/action_settings"
        Android:orderInCategory="100"
        Android:title="Button title"
        Android:icon="@drawable/buttonicon"
        app:showAsAction="never" />
</menu>

次に、これらのメソッドをアクティビティクラスに追加します。

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here.
    int id = item.getItemId();

    if (id == R.id.action_settings) {
        //process your onClick here
        return true;
    }

    return super.onOptionsItemSelected(item);
}
0
Ashish Ranjan

https://developer.Android.com/guide/topics/ui/menus.html#xml で適切に説明されています。 「menu」ディレクトリにmenu.xmlファイルを作成できます。これは、「drawable」および「layout」ディレクトリと同じレベルにあります

0
tibbi