106 lines
3.8 KiB
XML
106 lines
3.8 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
tools:context=".PeertubeUploadActivity">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:gravity="center"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/set_upload_file"
|
||
|
style="@style/Base.Widget.AppCompat.Button.Colored"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_horizontal"
|
||
|
android:enabled="false"
|
||
|
android:gravity="center"
|
||
|
android:text="@string/file_to_upload"
|
||
|
android:textSize="16sp" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/set_upload_file_name"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_horizontal"
|
||
|
android:layout_marginTop="20dp"
|
||
|
android:gravity="center"
|
||
|
android:visibility="gone" />
|
||
|
|
||
|
<!-- Videos channels -->
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_horizontal"
|
||
|
android:layout_marginTop="20dp"
|
||
|
android:gravity="center_horizontal"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center"
|
||
|
android:text="@string/channel"
|
||
|
android:textSize="16sp" />
|
||
|
|
||
|
<Spinner
|
||
|
android:id="@+id/set_upload_channel"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textSize="16sp" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
|
||
|
<!-- Videos Privacy -->
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_horizontal"
|
||
|
android:layout_marginTop="20dp"
|
||
|
android:gravity="center_horizontal"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center"
|
||
|
android:text="@string/action_privacy"
|
||
|
android:textSize="16sp" />
|
||
|
|
||
|
<Spinner
|
||
|
android:id="@+id/set_upload_privacy"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textSize="16sp" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
|
||
|
<EditText
|
||
|
android:id="@+id/video_title"
|
||
|
android:layout_width="250dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="20dp"
|
||
|
android:hint="@string/title_video_peertube"
|
||
|
android:inputType="text"
|
||
|
android:singleLine="true" />
|
||
|
|
||
|
<!-- Videos upload submit -->
|
||
|
<Button
|
||
|
android:id="@+id/set_upload_submit"
|
||
|
style="@style/Base.Widget.AppCompat.Button.Colored"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_horizontal"
|
||
|
android:layout_marginTop="40dp"
|
||
|
android:enabled="false"
|
||
|
android:gravity="center"
|
||
|
android:text="@string/upload_video"
|
||
|
android:textSize="18sp" />
|
||
|
</LinearLayout>
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|