2016-04-21 20:28:01 -03:00
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
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"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<RadioGroup
|
|
|
|
android:layout_width="match_parent"
|
2016-04-21 20:28:01 -03:00
|
|
|
android:layout_height="wrap_content"
|
2016-04-27 06:51:47 -03:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:checkedButton="@+id/video">
|
|
|
|
<RadioButton android:id="@+id/video"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/video"
|
|
|
|
android:onClick="onRadioButtonClicked"/>
|
|
|
|
<RadioButton android:id="@+id/audio"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/audio"
|
|
|
|
android:onClick="onRadioButtonClicked"/>
|
|
|
|
</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>
|