Currently on an Android 4.3 device. I am using a great answer here . I managed to reduce the font size of AlertDialogindividual elements:
<style name="AlertDialogTheme" parent="android:Theme.Dialog">
<item name="android:textSize">13sp</item>
</style>
The dialog itself is built using:
ContextThemeWrapper cw = new ContextThemeWrapper( this, R.style.AlertDialogTheme );
AlertDialog.Builder builder = new AlertDialog.Builder(cw);
However, the problem is that the individual height of the elements remains unchanged - in fact there is a fifth element that simply appears when scrolling in the dialog box:

I tried to installdividerHeight , but it just increased the interval. I also set the property layout_marginto 0dpwithout success.
What is the correct style definition for this dialog to reduce the space between labels?
, , , . AlertDialog.