WAI
Status Update
Comments
au...@google.com <au...@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.
ac...@gmail.com <ac...@gmail.com> #4
Is this issue resolved?
ki...@google.com <ki...@google.com> #5
we truly need it we cannot know when the other person answer the phone!
ac...@gmail.com <ac...@gmail.com> #6
Is it possible to detect outgoing call is answered or not in android?
ac...@gmail.com <ac...@gmail.com> #7
how can i detect if a call is left unanswered.
lo...@gmail.com <lo...@gmail.com> #8
Any updates on this please ??
Description
STEPS TO REPRODUCE:
1. Create a android.support.v4.widget.DrawerLayout
2. Set your left drawer to match_parent, match_parent
3. Set you margin_right to 56dp
EXPECTED RESULTS:
Creates a drawer on the left with a 56dp margin on the right
OBSERVED RESULTS:
Creates a drawer on the left with a 64dp margin on the right + 56dp "padding" inside the drawer.
ADDITIONAL INFORMATION:
"The width of the side nav is equal to the width of the screen minus the height of the action bar, or in this case 56 dp from the right edge of the screen."
The code responsible is:
mMinDrawerMargin = (int) (MIN_DRAWER_MARGIN * density + 0.5f); on line 322. MIN_DRAWER_MARGIN is set to 64dp.
final int drawerWidthSpec = getChildMeasureSpec(widthMeasureSpec,
mMinDrawerMargin + lp.leftMargin + lp.rightMargin,
lp.width); on line 857
The MIN_DRAWER_MARGIN should be set to the ?attrActionBarSize (but even that is dynamic, so it should really only be used if there is no margin set). Margin on the drawer it self should NOT result in padding.