SDKLauncher-Android icon indicating copy to clipboard operation
SDKLauncher-Android copied to clipboard

the play / pause controls are too opaque for users to see

Open duanwalker opened this issue 9 years ago • 1 comments

image ![screenshot_2015-03-05-13-05-58]

media controls are barely visable.

using: 7" Android galaxy tab 3 ver. 4.4.2

duanwalker avatar Mar 05 '15 18:03 duanwalker

The current icons are transparent PNG images, with black graphics:

https://github.com/readium/SDKLauncher-Android/tree/develop/SDKLauncher-Android/res/drawable-hdpi

The layout file:

https://github.com/readium/SDKLauncher-Android/blob/develop/SDKLauncher-Android/res/menu/web_view.xml

The "dark" style is used:

https://github.com/readium/SDKLauncher-Android/blob/develop/SDKLauncher-Android/res/values-v14/styles.xml

Android devs, is this a case of changing some defaults? e.g.:

  <style name="ActionBar" parent="@android:style/Widget.Holo.Light.ActionBar" >
      <item name="android:selectableItemBackground">@color/transparent</item>
      <item name="android:background">#00000000</item>
  </style>

danielweck avatar Mar 05 '15 21:03 danielweck