Question If I have the following:
after you call
AlertDialog dialog = builder.show();
then call
fixScrollViewHeight(scrollView);
private void fixScrollViewHeight(ScrollView scrollView)
{
int screenHeight = activity.getWindowManager().getDefaultDisplay().getHeight();
LayoutParams lp = scrollView.getLayoutParams();
lp.height = screenHeight / 3;
scrollView.setLayoutParams(lp);
}