2022-08-26 13:07:28 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-10-15 20:20:18 +05:30
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-08-26 13:07:28 +05:30
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-10-15 20:20:18 +05:30
|
|
|
android:orientation="vertical">
|
2022-08-26 13:07:28 +05:30
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginHorizontal="25dp"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
tools:ignore="UselessParent">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/share_with_time" />
|
|
|
|
|
2022-09-09 00:26:55 +05:30
|
|
|
<com.google.android.material.materialswitch.MaterialSwitch
|
2022-08-26 13:07:28 +05:30
|
|
|
android:id="@+id/timeCodeSwitch"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2022-10-15 20:20:18 +05:30
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
|
|
android:visibility="gone"
|
|
|
|
android:id="@+id/timeStampLayout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginHorizontal="25dp"
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:layout_marginBottom="25dp"
|
|
|
|
android:hint="@string/time_code">
|
|
|
|
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
|
|
android:id="@+id/timeStamp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="number" />
|
|
|
|
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|