Skip to content

Commit 41c5aa3

Browse files
authored
Merge pull request #35 from MirrorFly/release/V7.13.4
Release/v7.13.4
2 parents ed5b664 + f3ea507 commit 41c5aa3

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:app="http://schemas.android.com/apk/res-auto"
4+
android:layout_width="match_parent"
5+
android:background="@color/black"
6+
android:layout_height="wrap_content">
7+
8+
<androidx.cardview.widget.CardView
9+
android:layout_width="match_parent"
10+
android:layout_height="wrap_content"
11+
android:background="@color/black"
12+
app:layout_constraintBottom_toBottomOf="parent"
13+
app:layout_constraintEnd_toEndOf="parent"
14+
app:layout_constraintStart_toStartOf="parent"
15+
app:layout_constraintTop_toTopOf="parent">
16+
17+
<androidx.constraintlayout.widget.ConstraintLayout
18+
android:layout_width="match_parent"
19+
android:layout_height="match_parent"
20+
android:padding="4dp">
21+
22+
<androidx.appcompat.widget.AppCompatButton
23+
android:id="@+id/call_option"
24+
android:layout_width="match_parent"
25+
android:layout_height="0dp"
26+
android:layout_margin="@dimen/margin_10"
27+
android:text="@string/audio_call"
28+
android:textAlignment="center"
29+
android:textColor="@color/white"
30+
android:background="@color/black_transparent"
31+
app:layout_constraintEnd_toEndOf="parent"
32+
app:layout_constraintStart_toStartOf="parent"
33+
app:layout_constraintTop_toTopOf="parent" />
34+
35+
<androidx.appcompat.widget.AppCompatButton
36+
android:id="@+id/call_option_anonymous"
37+
android:layout_width="match_parent"
38+
android:layout_height="0dp"
39+
android:layout_margin="@dimen/margin_10"
40+
android:text="@string/video_call"
41+
android:textAlignment="center"
42+
android:textColor="@color/white"
43+
android:background="@color/black_transparent"
44+
app:layout_constraintEnd_toEndOf="parent"
45+
app:layout_constraintStart_toStartOf="parent"
46+
app:layout_constraintTop_toBottomOf="@+id/call_option" />
47+
</androidx.constraintlayout.widget.ConstraintLayout>
48+
49+
</androidx.cardview.widget.CardView>
50+
</androidx.constraintlayout.widget.ConstraintLayout>

0 commit comments

Comments
 (0)