Fixed
Status Update
Comments
al...@android.com <al...@android.com>
ch...@google.com <ch...@google.com> #2
Please add new state when call is connected or expose APIs to check when call is answered.
CALL_STATE_IDLE, CALL_STATE_RINING and CALL_STATE_OFFHOOK states are not very usefull unless we have connected / active state.
CALL_STATE_IDLE, CALL_STATE_RINING and CALL_STATE_OFFHOOK states are not very usefull unless we have connected / active state.
pa...@gmail.com <pa...@gmail.com> #3
[Comment deleted]
ch...@google.com <ch...@google.com> #4
Is this issue resolved?
pa...@gmail.com <pa...@gmail.com> #5
we truly need it we cannot know when the other person answer the phone!
pa...@gmail.com <pa...@gmail.com> #6
Is it possible to detect outgoing call is answered or not in android?
ch...@google.com <ch...@google.com> #7
how can i detect if a call is left unanswered.
ch...@google.com <ch...@google.com>
ch...@google.com <ch...@google.com> #8
Any updates on this please ??
Description
Version used: 21.0.0
When one uses the ActionBarDrawerToggle (v7) one can show the up button still (useful on tablets) by doing:
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setHomeButtonEnabled(true);
mDrawerToggle.setDrawerIndicatorEnabled(false);
But it shows a white up button. If ActionBarDrawerToggle is not used, then it shows the correct color. setHomeAsUpIndicator in ActionBarDrawerToggle states:
resId Resource ID of a drawable to use for the up indicator, or 0 to use the theme's default
I guess this is true only that far, that it uses the correct drawable from the theme. But it should be using the correct drawable + tint from the theme in my opinion.
Current workaround is to set the icon by yourself:
TypedArray a = getTheme().obtainStyledAttributes(R.style.AppTheme, new int[] {R.attr.homeAsUpIndicator});
Drawable drawable = getResources().getDrawable(a.getResourceId(0, 0));
drawable.setColorFilter(WANTED_COLOR, PorterDuff.Mode.SRC_IN);
mDrawerToggle.setHomeAsUpIndicator(drawable);