Support for stickers and scribbles

// FREEBIE
This commit is contained in:
Moxie Marlinspike
2016-12-08 14:20:38 -08:00
parent c8fe671f9c
commit 1b44bdcd3c
351 changed files with 4738 additions and 24 deletions

View File

@@ -253,4 +253,12 @@
<item>604800</item>
</integer-array>
<array name="scribble_colors">
<item>#000000</item>
<item>#ff0000</item>
<item>#ffff00</item>
<item>#00ffff</item>
<item>#ff00ff</item>
</array>
</resources>

View File

@@ -154,6 +154,7 @@
</declare-styleable>
<declare-styleable name="AudioView">
<attr name="widgetBackground" format="color"/>
<attr name="foregroundTintColor" format="color" />
<attr name="backgroundTintColor" format="color" />
</declare-styleable>
@@ -183,4 +184,10 @@
<attr name="square_height" format="boolean"/>
</declare-styleable>
<declare-styleable name="VerticalSlideColorPicker">
<attr name="pickerBorderColor" format="color" />
<attr name="pickerBorderWidth" format="dimension" />
<attr name="pickerColors" format="reference" />
</declare-styleable>
</resources>

View File

@@ -52,4 +52,7 @@
<color name="import_export_item_background_shadow_dark">#ff222222</color>
<color name="import_export_touch_highlight_light">#400099cc</color>
<color name="import_export_touch_highlight_dark">#40ffffff</color>
<color name="sticker_selected_color">#8cf437</color>
<color name="transparent">#00FFFFFF</color>
</resources>

View File

@@ -25,6 +25,7 @@
<dimen name="media_bubble_height">210dp</dimen>
<dimen name="media_bubble_border_width">3dp</dimen>
<dimen name="media_bubble_remove_button_size">24dp</dimen>
<dimen name="media_bubble_edit_button_size">24dp</dimen>
<integer name="media_overview_cols">3</integer>
<dimen name="message_details_table_row_pad">10dp</dimen>
@@ -63,4 +64,6 @@
<dimen name="onboarding_watermark_size">140dp</dimen>
<dimen name="onboarding_title_size">34sp</dimen>
<dimen name="onboarding_subtitle_size">20sp</dimen>
<dimen name="scribble_stroke_size">3dp</dimen>
</resources>

View File

@@ -273,4 +273,6 @@
<color name="grey_800">#424242</color>
<color name="grey_900">#212121</color>
<color name="grey_400_transparent">#44BDBDBD</color>
</resources>