mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
130 lines
No EOL
5.1 KiB
XML
130 lines
No EOL
5.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/subs_root"
|
|
android:background="?attr/primaryBlackBackground"
|
|
>
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<TextView
|
|
android:paddingStart="20dp"
|
|
android:paddingEnd="20dp"
|
|
android:layout_marginTop="20dp"
|
|
android:layout_marginBottom="10dp"
|
|
android:textStyle="bold"
|
|
android:text="@string/subtitles_settings"
|
|
android:textSize="20sp"
|
|
android:textColor="?attr/textColor"
|
|
android:layout_width="match_parent"
|
|
android:layout_rowWeight="1"
|
|
android:layout_height="wrap_content">
|
|
</TextView>
|
|
|
|
<FrameLayout android:layout_width="match_parent" android:layout_height="75sp">
|
|
<ImageView
|
|
android:scaleType="centerCrop"
|
|
android:src="@drawable/subtitles_preview_background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:contentDescription="@string/preview_background_img_des">
|
|
</ImageView>
|
|
<com.google.android.exoplayer2.ui.SubtitleView
|
|
android:id="@+id/subtitle_text"
|
|
|
|
android:layout_width="match_parent"
|
|
android:layout_gravity="center"
|
|
android:foregroundGravity="center"
|
|
android:layout_height="match_parent">
|
|
</com.google.android.exoplayer2.ui.SubtitleView>
|
|
</FrameLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/subs_font"
|
|
android:text="@string/subs_font"
|
|
style="@style/SettingsItem"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/subs_font_size"
|
|
android:text="@string/subs_font_size"
|
|
style="@style/SettingsItem"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/subs_text_color"
|
|
android:text="@string/subs_text_color"
|
|
style="@style/SettingsItem"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/subs_outline_color"
|
|
android:text="@string/subs_outline_color"
|
|
style="@style/SettingsItem"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/subs_background_color"
|
|
android:text="@string/subs_background_color"
|
|
style="@style/SettingsItem"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/subs_window_color"
|
|
android:text="@string/subs_window_color"
|
|
style="@style/SettingsItem"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/subs_edge_type"
|
|
android:text="@string/subs_edge_type"
|
|
style="@style/SettingsItem"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/subs_subtitle_elevation"
|
|
android:text="@string/subs_subtitle_elevation"
|
|
style="@style/SettingsItem"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/subs_auto_select_language"
|
|
android:text="@string/subs_auto_select_language"
|
|
style="@style/SettingsItem"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/subs_download_languages"
|
|
android:text="@string/subs_download_languages"
|
|
style="@style/SettingsItem"
|
|
/>
|
|
<TextView
|
|
android:gravity="center"
|
|
android:text="@string/subs_hold_to_reset_to_default"
|
|
android:textSize="14sp"
|
|
|
|
android:textColor="?attr/textColor"
|
|
android:layout_width="match_parent"
|
|
android:layout_rowWeight="1"
|
|
android:layout_height="wrap_content">
|
|
</TextView>
|
|
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_gravity="bottom"
|
|
android:gravity="bottom|end"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="60dp">
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
style="@style/WhiteButton"
|
|
android:layout_gravity="center_vertical|end"
|
|
android:visibility="visible"
|
|
android:text="@string/sort_apply"
|
|
android:id="@+id/apply_btt"
|
|
android:layout_width="wrap_content"
|
|
/>
|
|
<com.google.android.material.button.MaterialButton
|
|
style="@style/BlackButton"
|
|
android:layout_gravity="center_vertical|end"
|
|
android:text="@string/sort_cancel"
|
|
android:id="@+id/cancel_btt"
|
|
android:layout_width="wrap_content"
|
|
/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</ScrollView> |