Problem is that now the only visible radio button in a nest is the checked one - all unchecked ones have no visible button - which to me looks a bit too minimalistic.
I'm assuming this is Material Design.
Is there any way to remedy this - I've been searching the forums and googling but am drowning in XML which is most definitely not my strong suit.
Which is obviously very similar to what you are now suggesting above.
I have tried putting both in my manifest but it appears whichever is last in the manifest wins - so I can either have one or the other - is there any way to combine them so that I get both no title bar and proper radiobutton bullets?
After a lot of suck'n'see and some more googling I have come up with a solution that seems to give me what I want by putting this in my app's manifest:
<item name="android:colorPrimary">@color/pitch_black</item>
This gives me a black title background in the apps recents/overview entry.
<item name="android:windowBackground">@color/pitch_black</item>
This gives me a black screen when app is being launched - if left out it is white.
<item name="android:actionBarSize">0dp</item>
This cans the action bar.
<item name="android:windowNoTitle">true</item>
This cans the title.
I am testing on a Samsung S5 running Android 6.0.1 (Marshmallow) and think I am actually using the first block (i.e. parent="@android:style/Theme.Material.Light").
Is there any sneaky way I can test the second block?
Alternatively, could anyone test and/or tell me if the second block works - I read somewhere that colorPrimary was introduced with Lollipop - not exactly sure what this means for the relevance/stability of the second block running on pre-Lollipop devices.