mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-01-06 01:20:29 +05:30
add alternative layout for related streams
This commit is contained in:
parent
32bd35aa48
commit
610121dd90
@ -17,6 +17,7 @@ import com.github.libretube.constants.PreferenceKeys
|
|||||||
import com.github.libretube.databinding.TrendingRowBinding
|
import com.github.libretube.databinding.TrendingRowBinding
|
||||||
import com.github.libretube.databinding.VideoRowBinding
|
import com.github.libretube.databinding.VideoRowBinding
|
||||||
import com.github.libretube.extensions.formatShort
|
import com.github.libretube.extensions.formatShort
|
||||||
|
import com.github.libretube.extensions.toDp
|
||||||
import com.github.libretube.extensions.toID
|
import com.github.libretube.extensions.toID
|
||||||
import com.github.libretube.ui.extensions.setFormattedDuration
|
import com.github.libretube.ui.extensions.setFormattedDuration
|
||||||
import com.github.libretube.ui.extensions.setWatchProgressLength
|
import com.github.libretube.ui.extensions.setWatchProgressLength
|
||||||
@ -59,7 +60,7 @@ class VideosAdapter(
|
|||||||
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): VideosViewHolder {
|
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): VideosViewHolder {
|
||||||
val layoutInflater = LayoutInflater.from(parent.context)
|
val layoutInflater = LayoutInflater.from(parent.context)
|
||||||
return when {
|
return when {
|
||||||
forceMode == ForceMode.TRENDING -> VideosViewHolder(TrendingRowBinding.inflate(layoutInflater, parent, false))
|
forceMode in listOf(ForceMode.TRENDING, ForceMode.RELATED) -> VideosViewHolder(TrendingRowBinding.inflate(layoutInflater, parent, false))
|
||||||
forceMode == ForceMode.CHANNEL -> VideosViewHolder(VideoRowBinding.inflate(layoutInflater, parent, false))
|
forceMode == ForceMode.CHANNEL -> VideosViewHolder(VideoRowBinding.inflate(layoutInflater, parent, false))
|
||||||
PreferenceHelper.getBoolean(
|
PreferenceHelper.getBoolean(
|
||||||
PreferenceKeys.ALTERNATIVE_VIDEOS_LAYOUT,
|
PreferenceKeys.ALTERNATIVE_VIDEOS_LAYOUT,
|
||||||
@ -82,6 +83,12 @@ class VideosAdapter(
|
|||||||
|
|
||||||
// Trending layout
|
// Trending layout
|
||||||
holder.trendingRowBinding?.apply {
|
holder.trendingRowBinding?.apply {
|
||||||
|
if (forceMode == ForceMode.RELATED) {
|
||||||
|
val params = root.layoutParams
|
||||||
|
params.width = (180).toDp(root.context.resources).toInt()
|
||||||
|
root.layoutParams = params
|
||||||
|
}
|
||||||
|
|
||||||
textViewTitle.text = video.title
|
textViewTitle.text = video.title
|
||||||
textViewChannel.text =
|
textViewChannel.text =
|
||||||
video.uploaderName + TextUtils.SEPARATOR +
|
video.uploaderName + TextUtils.SEPARATOR +
|
||||||
@ -160,7 +167,8 @@ class VideosAdapter(
|
|||||||
NONE,
|
NONE,
|
||||||
TRENDING,
|
TRENDING,
|
||||||
ROW,
|
ROW,
|
||||||
CHANNEL
|
CHANNEL,
|
||||||
|
RELATED
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getLayout(context: Context): LayoutManager {
|
fun getLayout(context: Context): LayoutManager {
|
||||||
|
@ -38,6 +38,7 @@ import com.github.libretube.api.CronetHelper
|
|||||||
import com.github.libretube.api.RetrofitInstance
|
import com.github.libretube.api.RetrofitInstance
|
||||||
import com.github.libretube.api.obj.ChapterSegment
|
import com.github.libretube.api.obj.ChapterSegment
|
||||||
import com.github.libretube.api.obj.SegmentData
|
import com.github.libretube.api.obj.SegmentData
|
||||||
|
import com.github.libretube.api.obj.Streams
|
||||||
import com.github.libretube.constants.IntentData
|
import com.github.libretube.constants.IntentData
|
||||||
import com.github.libretube.constants.PreferenceKeys
|
import com.github.libretube.constants.PreferenceKeys
|
||||||
import com.github.libretube.databinding.DoubleTapOverlayBinding
|
import com.github.libretube.databinding.DoubleTapOverlayBinding
|
||||||
@ -120,7 +121,7 @@ class PlayerFragment : BaseFragment(), OnlinePlayerOptions {
|
|||||||
private var videoId: String? = null
|
private var videoId: String? = null
|
||||||
private var playlistId: String? = null
|
private var playlistId: String? = null
|
||||||
private var isLive = false
|
private var isLive = false
|
||||||
private lateinit var streams: com.github.libretube.api.obj.Streams
|
private lateinit var streams: Streams
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* for the transition
|
* for the transition
|
||||||
@ -383,6 +384,12 @@ class PlayerFragment : BaseFragment(), OnlinePlayerOptions {
|
|||||||
binding.commentsRecView.setItemViewCacheSize(20)
|
binding.commentsRecView.setItemViewCacheSize(20)
|
||||||
|
|
||||||
binding.relatedRecView.layoutManager = VideosAdapter.getLayout(requireContext())
|
binding.relatedRecView.layoutManager = VideosAdapter.getLayout(requireContext())
|
||||||
|
|
||||||
|
binding.alternativeTrendingRec.layoutManager = LinearLayoutManager(
|
||||||
|
context,
|
||||||
|
LinearLayoutManager.HORIZONTAL,
|
||||||
|
false
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setFullscreen() {
|
private fun setFullscreen() {
|
||||||
@ -897,6 +904,12 @@ class PlayerFragment : BaseFragment(), OnlinePlayerOptions {
|
|||||||
response.relatedStreams.orEmpty().toMutableList(),
|
response.relatedStreams.orEmpty().toMutableList(),
|
||||||
childFragmentManager
|
childFragmentManager
|
||||||
)
|
)
|
||||||
|
|
||||||
|
binding.alternativeTrendingRec.adapter = VideosAdapter(
|
||||||
|
response.relatedStreams.orEmpty().toMutableList(),
|
||||||
|
childFragmentManager,
|
||||||
|
forceMode = VideosAdapter.Companion.ForceMode.RELATED
|
||||||
|
)
|
||||||
}
|
}
|
||||||
// set video description
|
// set video description
|
||||||
val description = response.description!!
|
val description = response.description!!
|
||||||
|
@ -1,10 +1,6 @@
|
|||||||
package com.github.libretube.ui.preferences
|
package com.github.libretube.ui.preferences
|
||||||
|
|
||||||
import android.content.ActivityNotFoundException
|
|
||||||
import android.content.Intent
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.provider.Settings
|
|
||||||
import android.widget.Toast
|
|
||||||
import androidx.preference.ListPreference
|
import androidx.preference.ListPreference
|
||||||
import androidx.preference.Preference
|
import androidx.preference.Preference
|
||||||
import androidx.preference.SwitchPreferenceCompat
|
import androidx.preference.SwitchPreferenceCompat
|
||||||
@ -14,7 +10,6 @@ import com.github.libretube.ui.activities.SettingsActivity
|
|||||||
import com.github.libretube.ui.base.BasePreferenceFragment
|
import com.github.libretube.ui.base.BasePreferenceFragment
|
||||||
import com.github.libretube.ui.dialogs.NavBarOptionsDialog
|
import com.github.libretube.ui.dialogs.NavBarOptionsDialog
|
||||||
import com.github.libretube.ui.dialogs.RequireRestartDialog
|
import com.github.libretube.ui.dialogs.RequireRestartDialog
|
||||||
import com.github.libretube.util.PreferenceHelper
|
|
||||||
import com.github.libretube.util.ThemeHelper
|
import com.github.libretube.util.ThemeHelper
|
||||||
import com.google.android.material.color.DynamicColors
|
import com.google.android.material.color.DynamicColors
|
||||||
|
|
||||||
@ -69,27 +64,6 @@ class AppearanceSettings : BasePreferenceFragment() {
|
|||||||
true
|
true
|
||||||
}
|
}
|
||||||
|
|
||||||
val systemCaptionStyle =
|
|
||||||
findPreference<SwitchPreferenceCompat>(PreferenceKeys.SYSTEM_CAPTION_STYLE)
|
|
||||||
val captionSettings = findPreference<Preference>(PreferenceKeys.CAPTION_SETTINGS)
|
|
||||||
|
|
||||||
captionSettings?.isVisible =
|
|
||||||
PreferenceHelper.getBoolean(PreferenceKeys.SYSTEM_CAPTION_STYLE, true)
|
|
||||||
systemCaptionStyle?.setOnPreferenceChangeListener { _, newValue ->
|
|
||||||
captionSettings?.isVisible = newValue as Boolean
|
|
||||||
true
|
|
||||||
}
|
|
||||||
|
|
||||||
captionSettings?.setOnPreferenceClickListener {
|
|
||||||
try {
|
|
||||||
val captionSettingsIntent = Intent(Settings.ACTION_CAPTIONING_SETTINGS)
|
|
||||||
startActivity(captionSettingsIntent)
|
|
||||||
} catch (e: ActivityNotFoundException) {
|
|
||||||
Toast.makeText(activity, R.string.error, Toast.LENGTH_SHORT).show()
|
|
||||||
}
|
|
||||||
true
|
|
||||||
}
|
|
||||||
|
|
||||||
val legacySubscriptionView =
|
val legacySubscriptionView =
|
||||||
findPreference<SwitchPreferenceCompat>(PreferenceKeys.LEGACY_SUBSCRIPTIONS)
|
findPreference<SwitchPreferenceCompat>(PreferenceKeys.LEGACY_SUBSCRIPTIONS)
|
||||||
val legacySubscriptionColumns =
|
val legacySubscriptionColumns =
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
package com.github.libretube.ui.preferences
|
package com.github.libretube.ui.preferences
|
||||||
|
|
||||||
|
import android.content.ActivityNotFoundException
|
||||||
|
import android.content.Intent
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
|
import android.provider.Settings
|
||||||
|
import android.widget.Toast
|
||||||
import androidx.preference.ListPreference
|
import androidx.preference.ListPreference
|
||||||
import androidx.preference.Preference
|
import androidx.preference.Preference
|
||||||
import androidx.preference.SwitchPreferenceCompat
|
import androidx.preference.SwitchPreferenceCompat
|
||||||
@ -37,6 +41,27 @@ class PlayerSettings : BasePreferenceFragment() {
|
|||||||
|
|
||||||
val defaultSubtitle = findPreference<ListPreference>(PreferenceKeys.DEFAULT_SUBTITLE)
|
val defaultSubtitle = findPreference<ListPreference>(PreferenceKeys.DEFAULT_SUBTITLE)
|
||||||
defaultSubtitle?.let { setupSubtitlePref(it) }
|
defaultSubtitle?.let { setupSubtitlePref(it) }
|
||||||
|
|
||||||
|
val systemCaptionStyle =
|
||||||
|
findPreference<SwitchPreferenceCompat>(PreferenceKeys.SYSTEM_CAPTION_STYLE)
|
||||||
|
val captionSettings = findPreference<Preference>(PreferenceKeys.CAPTION_SETTINGS)
|
||||||
|
|
||||||
|
captionSettings?.isVisible =
|
||||||
|
PreferenceHelper.getBoolean(PreferenceKeys.SYSTEM_CAPTION_STYLE, true)
|
||||||
|
systemCaptionStyle?.setOnPreferenceChangeListener { _, newValue ->
|
||||||
|
captionSettings?.isVisible = newValue as Boolean
|
||||||
|
true
|
||||||
|
}
|
||||||
|
|
||||||
|
captionSettings?.setOnPreferenceClickListener {
|
||||||
|
try {
|
||||||
|
val captionSettingsIntent = Intent(Settings.ACTION_CAPTIONING_SETTINGS)
|
||||||
|
startActivity(captionSettingsIntent)
|
||||||
|
} catch (e: ActivityNotFoundException) {
|
||||||
|
Toast.makeText(activity, R.string.error, Toast.LENGTH_SHORT).show()
|
||||||
|
}
|
||||||
|
true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setupSubtitlePref(preference: ListPreference) {
|
private fun setupSubtitlePref(preference: ListPreference) {
|
||||||
|
@ -5,8 +5,7 @@
|
|||||||
android:id="@+id/playerMotionLayout"
|
android:id="@+id/playerMotionLayout"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
app:layoutDescription="@xml/player_scene"
|
app:layoutDescription="@xml/player_scene">
|
||||||
tools:context=".ui.fragments.PlayerFragment">
|
|
||||||
|
|
||||||
<ScrollView
|
<ScrollView
|
||||||
android:id="@+id/player_scrollView"
|
android:id="@+id/player_scrollView"
|
||||||
@ -147,13 +146,13 @@
|
|||||||
android:layout_marginLeft="10dp"
|
android:layout_marginLeft="10dp"
|
||||||
android:layout_marginRight="10dp"
|
android:layout_marginRight="10dp"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:weightSum="5"
|
android:orientation="horizontal"
|
||||||
android:orientation="horizontal">
|
android:weightSum="5">
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/relPlayer_share"
|
android:id="@+id/relPlayer_share"
|
||||||
android:layout_weight="1"
|
style="@style/PlayerActionsLayout"
|
||||||
style="@style/PlayerActionsLayout">
|
android:layout_weight="1">
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:layout_width="24dp"
|
android:layout_width="24dp"
|
||||||
@ -161,16 +160,16 @@
|
|||||||
android:src="@drawable/ic_share" />
|
android:src="@drawable/ic_share" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
|
style="@style/PlayerActionsText"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
style="@style/PlayerActionsText"
|
|
||||||
android:text="@string/share" />
|
android:text="@string/share" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/relPlayer_download"
|
android:id="@+id/relPlayer_download"
|
||||||
android:layout_weight="1"
|
style="@style/PlayerActionsLayout"
|
||||||
style="@style/PlayerActionsLayout">
|
android:layout_weight="1">
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:layout_width="24dp"
|
android:layout_width="24dp"
|
||||||
@ -178,16 +177,16 @@
|
|||||||
android:src="@drawable/ic_download" />
|
android:src="@drawable/ic_download" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
|
style="@style/PlayerActionsText"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
style="@style/PlayerActionsText"
|
|
||||||
android:text="@string/download" />
|
android:text="@string/download" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/relPlayer_open"
|
android:id="@+id/relPlayer_open"
|
||||||
android:layout_weight="1"
|
style="@style/PlayerActionsLayout"
|
||||||
style="@style/PlayerActionsLayout">
|
android:layout_weight="1">
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:layout_width="24dp"
|
android:layout_width="24dp"
|
||||||
@ -196,16 +195,16 @@
|
|||||||
android:src="@drawable/ic_open" />
|
android:src="@drawable/ic_open" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
|
style="@style/PlayerActionsText"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
style="@style/PlayerActionsText"
|
|
||||||
android:text="@string/open" />
|
android:text="@string/open" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/relPlayer_background"
|
android:id="@+id/relPlayer_background"
|
||||||
android:layout_weight="1"
|
style="@style/PlayerActionsLayout"
|
||||||
style="@style/PlayerActionsLayout">
|
android:layout_weight="1">
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:layout_width="24dp"
|
android:layout_width="24dp"
|
||||||
@ -213,16 +212,16 @@
|
|||||||
android:src="@drawable/ic_headphones" />
|
android:src="@drawable/ic_headphones" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
|
style="@style/PlayerActionsText"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
style="@style/PlayerActionsText"
|
|
||||||
android:text="@string/audio" />
|
android:text="@string/audio" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/relPlayer_save"
|
android:id="@+id/relPlayer_save"
|
||||||
android:layout_weight="1"
|
style="@style/PlayerActionsLayout"
|
||||||
style="@style/PlayerActionsLayout">
|
android:layout_weight="1">
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:layout_width="24dp"
|
android:layout_width="24dp"
|
||||||
@ -230,9 +229,9 @@
|
|||||||
android:src="@drawable/ic_save" />
|
android:src="@drawable/ic_save" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
|
style="@style/PlayerActionsText"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
style="@style/PlayerActionsText"
|
|
||||||
android:text="@string/save" />
|
android:text="@string/save" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
@ -300,6 +299,13 @@
|
|||||||
app:cornerRadius="11dp" />
|
app:cornerRadius="11dp" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
<androidx.recyclerview.widget.RecyclerView
|
||||||
|
android:id="@+id/alternativeTrendingRec"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginHorizontal="15dp"
|
||||||
|
android:visibility="gone" />
|
||||||
|
|
||||||
<com.google.android.material.card.MaterialCardView
|
<com.google.android.material.card.MaterialCardView
|
||||||
android:id="@+id/comments_toggle"
|
android:id="@+id/comments_toggle"
|
||||||
style="@style/Widget.Material3.CardView.Elevated"
|
style="@style/Widget.Material3.CardView.Elevated"
|
||||||
|
@ -82,6 +82,8 @@
|
|||||||
android:id="@+id/textView_channel"
|
android:id="@+id/textView_channel"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
android:ellipsize="end"
|
||||||
|
android:maxLines="2"
|
||||||
android:paddingBottom="16dp"
|
android:paddingBottom="16dp"
|
||||||
app:layout_constraintEnd_toEndOf="@+id/textView_title"
|
app:layout_constraintEnd_toEndOf="@+id/textView_title"
|
||||||
app:layout_constraintStart_toStartOf="@+id/textView_title"
|
app:layout_constraintStart_toStartOf="@+id/textView_title"
|
||||||
|
@ -228,7 +228,7 @@
|
|||||||
<string name="change_playback_speed">Playback speed</string>
|
<string name="change_playback_speed">Playback speed</string>
|
||||||
<string name="require_restart">App restart required</string>
|
<string name="require_restart">App restart required</string>
|
||||||
<string name="require_restart_message">This change requires the app to be restarted. Press \'Ok\' to restart now.</string>
|
<string name="require_restart_message">This change requires the app to be restarted. Press \'Ok\' to restart now.</string>
|
||||||
<string name="navLabelVisibility">Navbar label visibility</string>
|
<string name="navLabelVisibility">Label visibility</string>
|
||||||
<string name="always">Always</string>
|
<string name="always">Always</string>
|
||||||
<string name="selected">Selected</string>
|
<string name="selected">Selected</string>
|
||||||
<string name="never">Never</string>
|
<string name="never">Never</string>
|
||||||
@ -365,6 +365,9 @@
|
|||||||
<string name="end_time">End time</string>
|
<string name="end_time">End time</string>
|
||||||
<string name="notification_time">Notification time</string>
|
<string name="notification_time">Notification time</string>
|
||||||
<string name="notification_time_summary">Time span in which notifications are allowed to show.</string>
|
<string name="notification_time_summary">Time span in which notifications are allowed to show.</string>
|
||||||
|
<string name="alternative_trending_layout">Alternative trending layout</string>
|
||||||
|
<string name="navbar_order">Order</string>
|
||||||
|
<string name="layout">Layout</string>
|
||||||
|
|
||||||
<!-- Notification channel strings -->
|
<!-- Notification channel strings -->
|
||||||
<string name="download_channel_name">Download Service</string>
|
<string name="download_channel_name">Download Service</string>
|
||||||
|
@ -38,14 +38,14 @@
|
|||||||
app:title="@string/app_icon"
|
app:title="@string/app_icon"
|
||||||
app:useSimpleSummaryProvider="true" />
|
app:useSimpleSummaryProvider="true" />
|
||||||
|
|
||||||
|
</PreferenceCategory>
|
||||||
|
|
||||||
|
<PreferenceCategory app:title="@string/navigation_bar">
|
||||||
|
|
||||||
<Preference
|
<Preference
|
||||||
android:icon="@drawable/ic_home"
|
android:icon="@drawable/ic_home"
|
||||||
app:key="navbar_items"
|
app:key="navbar_items"
|
||||||
app:title="@string/navigation_bar" />
|
app:title="@string/navbar_order" />
|
||||||
|
|
||||||
</PreferenceCategory>
|
|
||||||
|
|
||||||
<PreferenceCategory app:title="@string/app_behavior">
|
|
||||||
|
|
||||||
<ListPreference
|
<ListPreference
|
||||||
android:icon="@drawable/ic_label"
|
android:icon="@drawable/ic_label"
|
||||||
@ -56,33 +56,9 @@
|
|||||||
app:title="@string/navLabelVisibility"
|
app:title="@string/navLabelVisibility"
|
||||||
app:useSimpleSummaryProvider="true" />
|
app:useSimpleSummaryProvider="true" />
|
||||||
|
|
||||||
<ListPreference
|
|
||||||
android:icon="@drawable/ic_grid"
|
|
||||||
app:defaultValue="@integer/grid_items"
|
|
||||||
app:entries="@array/grid"
|
|
||||||
app:entryValues="@array/grid"
|
|
||||||
app:key="grid"
|
|
||||||
app:title="@string/grid"
|
|
||||||
app:useSimpleSummaryProvider="true" />
|
|
||||||
|
|
||||||
</PreferenceCategory>
|
</PreferenceCategory>
|
||||||
|
|
||||||
<PreferenceCategory app:title="@string/player">
|
<PreferenceCategory app:title="@string/layout">
|
||||||
|
|
||||||
<SwitchPreferenceCompat
|
|
||||||
android:icon="@drawable/ic_caption"
|
|
||||||
app:defaultValue="true"
|
|
||||||
app:key="system_caption_style"
|
|
||||||
app:title="@string/system_caption_style" />
|
|
||||||
|
|
||||||
<Preference
|
|
||||||
android:icon="@drawable/ic_settings"
|
|
||||||
app:key="caption_settings"
|
|
||||||
app:title="@string/caption_settings" />
|
|
||||||
|
|
||||||
</PreferenceCategory>
|
|
||||||
|
|
||||||
<PreferenceCategory app:title="@string/misc">
|
|
||||||
|
|
||||||
<SwitchPreferenceCompat
|
<SwitchPreferenceCompat
|
||||||
app:defaultValue="false"
|
app:defaultValue="false"
|
||||||
@ -105,6 +81,19 @@
|
|||||||
app:key="alternative_videos_layout"
|
app:key="alternative_videos_layout"
|
||||||
app:title="@string/alternative_videos_layout" />
|
app:title="@string/alternative_videos_layout" />
|
||||||
|
|
||||||
|
<ListPreference
|
||||||
|
android:icon="@drawable/ic_grid"
|
||||||
|
app:defaultValue="@integer/grid_items"
|
||||||
|
app:entries="@array/grid"
|
||||||
|
app:entryValues="@array/grid"
|
||||||
|
app:key="grid"
|
||||||
|
app:title="@string/grid"
|
||||||
|
app:useSimpleSummaryProvider="true" />
|
||||||
|
|
||||||
|
</PreferenceCategory>
|
||||||
|
|
||||||
|
<PreferenceCategory app:title="@string/misc">
|
||||||
|
|
||||||
<ListPreference
|
<ListPreference
|
||||||
android:defaultValue="recent"
|
android:defaultValue="recent"
|
||||||
android:entries="@array/playlistSortingOptions"
|
android:entries="@array/playlistSortingOptions"
|
||||||
|
@ -55,6 +55,21 @@
|
|||||||
|
|
||||||
</PreferenceCategory>
|
</PreferenceCategory>
|
||||||
|
|
||||||
|
<PreferenceCategory app:title="@string/appearance">
|
||||||
|
|
||||||
|
<SwitchPreferenceCompat
|
||||||
|
android:icon="@drawable/ic_caption"
|
||||||
|
app:defaultValue="true"
|
||||||
|
app:key="system_caption_style"
|
||||||
|
app:title="@string/system_caption_style" />
|
||||||
|
|
||||||
|
<Preference
|
||||||
|
android:icon="@drawable/ic_settings"
|
||||||
|
app:key="caption_settings"
|
||||||
|
app:title="@string/caption_settings" />
|
||||||
|
|
||||||
|
</PreferenceCategory>
|
||||||
|
|
||||||
<PreferenceCategory app:title="@string/behavior">
|
<PreferenceCategory app:title="@string/behavior">
|
||||||
|
|
||||||
<SwitchPreferenceCompat
|
<SwitchPreferenceCompat
|
||||||
|
Loading…
Reference in New Issue
Block a user