Search code examples
androidandroid-actionbarlistenerandroid-custom-view

Custom action bar items listener


I create custom view for action bar: action_bar_bets.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="right"
    android:weightSum="2"
    android:orientation="horizontal" >

    <ImageButton
        android:id="@+id/actionBarProfile"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:paddingRight="10dp"
        android:src="@drawable/ic_action_user" />

    <ImageButton
        android:id="@+id/actionBarBets"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:paddingRight="10dp"
        android:src="@drawable/ic_action_betslip" />

</LinearLayout>

here is my menu: action_bar.xml

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android" >


    <item
        android:id="@+id/mybetsCount"
        android:actionLayout="@layout/action_bar_bets"
        android:showAsAction="always"/>

</menu>

I create action bar in code:

ActionBar actionBar = getActionBar();
actionBar.setDisplayShowTitleEnabled(false);
actionBar.setDisplayUseLogoEnabled(false);
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setDisplayShowCustomEnabled(true);
View view = getLayoutInflater().inflate(R.layout.action_bar_bets, null);
actionBar.setCustomView(view)

I tried set OnClickListener to ImageButtons:

like this:

ImageButton profile = (ImageButton) view.findViewById(R.id.actionBarProfile);
profile.setOnClickListener(new OnClickListener() {

    @Override
    public void onClick(View v) {
        Toast.makeText(getApplicationContext(), "Profile", Toast.LENGTH_SHORT).show();
    }
});

and like this:

actionBar.getCustomView().setOnClickListener(new OnClickListener() {

    @Override
    public void onClick(View v) {
        switch (v.getId()) {
        case R.id.actionBarProfile:
            Toast.makeText(getApplicationContext(), "Profile", Toast.LENGTH_SHORT).show();
            break;
        default:
            break;
        }
    }
});

But nothing happened

Can you help me to fix this problem?

ADD Also in this class i have ListNavigation

PackageManager pm = getPackageManager();
String label;
try {
    ActivityInfo activityInfo = pm.getActivityInfo(getComponentName(),
            0);
    label = activityInfo.loadLabel(pm).toString();
} catch (NameNotFoundException e) {
    label = null;
    e.printStackTrace();
}

String[] navigations = { label, "Sports", "Profile" };
ArrayAdapter<String> adapter = new ArrayAdapter<String>(
        getBaseContext(), R.layout.custom_spinner_title_bar,
        android.R.id.text1, navigations);
adapter.setDropDownViewResource(R.layout.custom_spinner_title_bar);
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_LIST);
ActionBar.OnNavigationListener navigationListener = new OnNavigationListener() {
        @Override
    public boolean onNavigationItemSelected(int itemPosition,
            long itemId) {
        switch (itemPosition) {
        case 1:
            Intent intent = new Intent(getApplicationContext(),
                    MainActivity.class);
            startActivity(intent);
            break;
        case 2:
            intent = new Intent(getApplicationContext(),
                    Activity_profile.class);
            startActivity(intent);
            break;
        default:
            break;
        }
        return false;
    }
};
actionBar.setListNavigationCallbacks(adapter, navigationListener);

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

Solution

  • I found where i has error.

    LayoutParams lp = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, Gravity.RIGHT | Gravity.CENTER_VERTICAL);
    actionBar.setCustomView(view, lp);
    

    and delete this code:

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

    My navigation list overlaps the buttons

    Thank you all for the help