Merge pull request #6438 from TeamNewPipe/fix/metadataView
Increase width of metadata text view
This commit is contained in:
commit
509f501696
|
@ -294,8 +294,10 @@ class SubscriptionFragment : BaseStateFragment<SubscriptionState>() {
|
|||
}
|
||||
|
||||
private fun showLongTapDialog(selectedItem: ChannelInfoItem) {
|
||||
val commands = arrayOf(getString(R.string.share), getString(R.string.open_in_browser),
|
||||
getString(R.string.unsubscribe))
|
||||
val commands = arrayOf(
|
||||
getString(R.string.share), getString(R.string.open_in_browser),
|
||||
getString(R.string.unsubscribe)
|
||||
)
|
||||
|
||||
val actions = DialogInterface.OnClickListener { _, i ->
|
||||
when (i) {
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
app:layout_constraintGuide_percent="0.23" />
|
||||
app:layout_constraintGuide_percent="0.30" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/metadata_type_view"
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
app:layout_constraintGuide_percent="0.23" />
|
||||
app:layout_constraintGuide_percent="0.30" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
|
|
Loading…
Reference in New Issue