14 lines
622 B
XML
14 lines
622 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|||
|
|
<!-- What sits behind the scrubbing thumbnail. Black rather than translucent: a frame drawn
|
||
|
|
over the film it came from reads as a rendering fault, and this is the one preview with
|
||
|
|
nothing but the picture in it to say otherwise. The hairline is what separates a dark
|
||
|
|
scene from the dark screen around it. -->
|
||
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:shape="rectangle">
|
||
|
|
<solid android:color="#FF000000" />
|
||
|
|
<stroke
|
||
|
|
android:width="1dp"
|
||
|
|
android:color="#33FFFFFF" />
|
||
|
|
<corners android:radius="4dp" />
|
||
|
|
</shape>
|