Revert "Remove unused resources"

AS seems to have miscalculated

This reverts commit 344af622b7.
This commit is contained in:
Moxie Marlinspike
2017-11-14 11:29:20 -08:00
parent 344af622b7
commit b88069f396
66 changed files with 1267 additions and 1 deletions

View File

@@ -91,6 +91,18 @@
<item name="colorButtonNormal">@color/textsecure_primary</item>
</style>
<style name="transparent_progress">
<item name="android:windowFrame">@null</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowIsFloating">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowTitleStyle">@null</item>
<item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
<item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
<item name="android:backgroundDimEnabled">false</item>
<item name="android:background">@android:color/transparent</item>
</style>
<style name="NotificationText">
<item name="android:textColor">?android:attr/textColorPrimary</item>
</style>
@@ -144,10 +156,32 @@
</style>
<!-- For Holo Light Dialog Activity Styling Emulation -->
<style name="TextSecureDialogWindowTitle">
<item name="android:textSize">22sp</item>
<item name="android:textColor">@color/textsecure_holo_blue_light</item>
</style>
<style name="TextSecureDialogButtonBar"
tools:ignore="NewApi">
<item name="android:background">@null</item>
<item name="android:dividerPadding">0dp</item>
</style>
<style name="TextSecureBorderlessButtonSmall">
<item name="android:textSize">14sp</item>
</style>
<style name="Widget.ProgressBar.Horizontal" parent="@android:style/Widget.ProgressBar.Horizontal">
</style>
<style name="TextSecureDialogPrimaryText">
<item name="android:textColor">@color/white</item>
</style>
<style name="TextSecureDialogSecondaryText">
<item name="android:textColor">#ff999999</item>
</style>
<style name="MaterialButton">
<item name="android:elevation">1dp</item>
<item name="android:translationZ">1dp</item>
@@ -185,12 +219,22 @@
<!-- RedPhone -->
<!-- Buttons in the main "button row" of the in-call onscreen touch UI. -->
<style name="InCallButton">
<item name="android:layout_width">0px</item>
<item name="android:layout_height">@dimen/in_call_button_height</item>
<item name="android:layout_weight">1</item>
<item name="android:background">?android:attr/selectableItemBackground</item>
</style>
<!-- "Compound button" variation of InCallButton.
These buttons have the concept of two states: checked and unchecked.
(This style is just like "InCallButton" except that we also
clear out android:textOn and android:textOff, to avoid the default
text label behavior of the ToggleButton class.) -->
<style name="InCallCompoundButton" parent="InCallButton">
<item name="android:textOn">@null</item>
<item name="android:textOff">@null</item>
</style>
<style name="WebRtcCallCompoundButton">
<item name="android:layout_height">31dp</item>