mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-12-17 22:21:57 +03:00
ff23ced3ac
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
19 lines
No EOL
631 B
XML
19 lines
No EOL
631 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ Nextcloud Talk - Android Client
|
|
~
|
|
~ SPDX-FileCopyrightText: 2017-2018 Mario Danic <mario@lovelyhq.com>
|
|
~ SPDX-License-Identifier: GPL-3.0-or-later
|
|
-->
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle">
|
|
|
|
<corners
|
|
android:bottomLeftRadius="@dimen/message_bubble_corners_radius"
|
|
android:topRightRadius="2dp"
|
|
android:topLeftRadius="@dimen/message_bubble_corners_radius"
|
|
android:bottomRightRadius="@dimen/message_bubble_corners_radius" />
|
|
|
|
<solid android:color="@color/bg_default" />
|
|
|
|
</shape> |