refactor: use dark theme with red font colors
This commit is contained in:
parent
1328bb3ac8
commit
d21365ba30
|
@ -10,20 +10,23 @@
|
||||||
android:id="@+id/startFrontCameraButton"
|
android:id="@+id/startFrontCameraButton"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Start Front Camera" />
|
android:textColor="@color/red"
|
||||||
|
android:text="@string/start_front_camera" />
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/startBackCameraButton"
|
android:id="@+id/startBackCameraButton"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Start Back Camera"
|
android:text="@string/start_back_camera"
|
||||||
|
android:textColor="@color/red"
|
||||||
android:layout_marginTop="16dp" />
|
android:layout_marginTop="16dp" />
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/stopCameraButton"
|
android:id="@+id/stopCameraButton"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Stop Recording"
|
android:text="@string/stolp_recording"
|
||||||
|
android:textColor="@color/red"
|
||||||
android:layout_marginTop="16dp"
|
android:layout_marginTop="16dp"
|
||||||
android:visibility="gone" />
|
android:visibility="gone" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
|
@ -7,4 +7,5 @@
|
||||||
<color name="teal_700">#FF018786</color>
|
<color name="teal_700">#FF018786</color>
|
||||||
<color name="black">#FF000000</color>
|
<color name="black">#FF000000</color>
|
||||||
<color name="white">#FFFFFFFF</color>
|
<color name="white">#FFFFFFFF</color>
|
||||||
|
<color name="red">#FF0000</color>
|
||||||
</resources>
|
</resources>
|
|
@ -1,3 +1,6 @@
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name">Wittrail</string>
|
<string name="app_name">Wittrail</string>
|
||||||
|
<string name="start_back_camera">Start Back Camera</string>
|
||||||
|
<string name="start_front_camera">Start Front Camera</string>
|
||||||
|
<string name="stolp_recording">Stop Recording</string>
|
||||||
</resources>
|
</resources>
|
|
@ -2,7 +2,7 @@
|
||||||
<resources>
|
<resources>
|
||||||
|
|
||||||
<!-- Base application theme. -->
|
<!-- Base application theme. -->
|
||||||
<style name="Theme.WittrailAndroid" parent="Theme.AppCompat.Light.NoActionBar">
|
<style name="Theme.WittrailAndroid" parent="ThemeOverlay.AppCompat.Dark.ActionBar">
|
||||||
<!-- Customize your theme here. -->
|
<!-- Customize your theme here. -->
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue