2016-04-21 20:28:01 -03:00
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
2016-04-29 07:40:03 -03:00
|
|
|
android:layout_height="match_parent"
|
2016-04-21 20:28:01 -03:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-04-27 06:51:47 -03:00
|
|
|
android:theme="@style/NewPipeActionbarTheme" />
|
2016-04-21 20:28:01 -03:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="4dp"
|
|
|
|
android:background="@drawable/action_shadow"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="24dp"
|
|
|
|
android:layout_marginRight="24dp"
|
|
|
|
android:layout_marginTop="9dp"
|
|
|
|
android:layout_marginBottom="24dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="24dp"
|
|
|
|
android:layout_marginRight="24dp"
|
|
|
|
android:layout_marginBottom="24dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/msg_name"/>
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/file_name"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"/>
|
2016-04-27 06:51:47 -03:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="24dp"
|
|
|
|
android:layout_marginRight="24dp"
|
|
|
|
android:layout_marginBottom="24dp"
|
2016-04-29 07:40:03 -03:00
|
|
|
android:gravity="left"
|
|
|
|
android:orientation="horizontal">
|
2016-09-26 20:18:32 +02:00
|
|
|
<RadioGroup
|
|
|
|
android:id="@+id/video_audio_group"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
<RadioButton android:id="@+id/video_button"
|
2016-04-27 06:51:47 -03:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/video"
|
2016-04-29 07:40:03 -03:00
|
|
|
android:checked="true"/>
|
2016-09-26 20:18:32 +02:00
|
|
|
<RadioButton android:id="@+id/audio_button"
|
2016-04-27 06:51:47 -03:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-04-29 07:40:03 -03:00
|
|
|
android:text="@string/audio" />
|
2016-09-26 20:18:32 +02:00
|
|
|
</RadioGroup>
|
2016-04-21 20:28:01 -03:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="24dp"
|
|
|
|
android:layout_marginRight="24dp"
|
|
|
|
android:layout_marginBottom="24dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/msg_threads"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/threads_count"
|
|
|
|
android:layout_width="20dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="0"/>
|
|
|
|
|
|
|
|
<SeekBar
|
|
|
|
android:id="@+id/threads"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:max="31"
|
|
|
|
android:progress="3"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|