mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-11-05 17:46:24 +00:00
746c2a15bf
- Migrate to fragments - Fix #487 - Don't show "Open in popup mode" to channel links - New backstack of videos - Change the subscribers count to format using `NumberFormat`, for example some locales use `.` others `,`, this handles it automatically (and the old method had a bug for leading zero, e.g. 4.82.125 instead of 4.082.125) - Add string 'subscribers' for channels with more than 1 subscriber (plural) - Popup player chooses the default format and resolution based on the new preference (format) - Fix taskaffinity of the router activities - Show title before loading, as it is available from the items already loaded
28 lines
1.1 KiB
XML
28 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/mainBG"
|
|
tools:context=".fragments.detail.VideoDetailFragment">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:text="@string/app_name"
|
|
android:textSize="40sp"
|
|
android:fontFamily="sans-serif-condensed"
|
|
android:layout_marginTop="30dp"
|
|
android:id="@+id/mainBGTitle"
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:text="@string/main_bg_subtitle"
|
|
android:id="@+id/mainBGSubtitle"
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
</LinearLayout> |