Worked it out. In the mVertical is true condition of the onLayout(boolean changed, int l, int t, int r, int b) method of SlidingDrawer (or whatever variant of SlidingDrawer you're using), you should find the following line of code...
handleLeft = (width - childWidth) / 2;
... which centre-aligns the handle. Change this to...
handleLeft = l;
... to left-align the handle when the sliding drawer is set to slide vertical (i.e. bottom-to-top or top-to-bottom), or change it to...
handleLeft = r - handleWidth;
... to right-align the handle.
Likewise, if the sliding drawer is set to slide horizontal (i.e. right-to-left or right-to-left), in the mVertical is false condition of the onLayout(boolean changed, int l, int t, int r, int b) method, find the following line of code...
handleTop = (height - childHeight) / 2;
... and change it to...
handleTop = t;
... to top-align the handle, or...
handleTop = b - handleHeight;
... to bottom-align the handle. Happy coding!