I am working on android application where i need a button in action bar. These are my activity and java files. So, i need a button at right side of my tool bar. Thanks in advance.
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));
}
}
}
In your activity class, override the following methods if they are not there by default:
mymenu.xml
its described properly at https://developer.android.com/guide/topics/ui/menus.html#xml . You can create a menu.xml file at "menu" directory, which is at the same level as "drawable" and "layout" directories
Someone had answered this question before
You have two steps to do that:
Create menu in res/menu (Name it my_menu.xml)
Override onCreateOptionsMenu and inflate menu
Visit : How to add button in ActionBar(Android)?
If you want to customize UI of your ActionBar, then you can use Toolbar as ActionBar. Here are the steps to do the same :
Add below code as a child of AppBarLayout in your activity layout xml.
Make your Toolbar as ActionBar by adding the below code in your Activity onCreate() method.
In AndroidManifest.xml, add following theme to your activity:
In styles.xml add following code:
Make a xml file for your menu in
res/menu
directory (menu_main.xml
in this case):then add these methods in your activity class :