I created an AlertDialogue using the following code :
int selectedModeId=0;
public void sortTypeModeSelection(){
AlertDialog.Builder aler
I was able to achieve this through styles. I added this style to my styles.xml file in the values directory:
Then when creating the AlertDialog, I wrapped the activity context in a ContextThemeWrapper and passed that into the Builder constructor:
ContextThemeWrapper cw = new ContextThemeWrapper( this, R.style.AlertDialogTheme );
AlertDialog.Builder b = new AlertDialog.Builder( cw );
This produced smaller text size for the list items in the dialog.
