Summary: The yoga splash screen that runs at the beginning of the app is unnecessary and can be removed for simplicty. Reviewed By: emilsjolander Differential Revision: D4571624 fbshipit-source-id: 3eb12f7c3447805f4546bd192df9670c5427572a
24 lines
844 B
XML
24 lines
844 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
Copyright 2014-present, Facebook, Inc.
|
|
All rights reserved.
|
|
|
|
This source code is licensed under the license found in the
|
|
LICENSE-examples file in the root directory of this source tree.
|
|
-->
|
|
|
|
<resources>
|
|
<style name="NoTitleBarWhiteBG" parent="Theme.AppCompat.Light">
|
|
<item name="android:actionBarStyle">@style/MyActionBar</item>
|
|
<item name="android:textDirection">locale</item>
|
|
</style>
|
|
<style name="MyActionBar" parent="Widget.AppCompat.Light.ActionBar">
|
|
<item name="android:titleTextStyle">@style/MyTitleText</item>
|
|
<item name="android:background">@drawable/action_bar_background</item>
|
|
</style>
|
|
<style name="MyTitleText" parent="TextAppearance.AppCompat.Widget.ActionBar.Title">
|
|
<item name="android:textColor">@color/yoga_blue</item>
|
|
</style>
|
|
</resources>
|