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
14 lines
545 B
XML
14 lines
545 B
XML
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:context="org.schabi.newpipe.fragments.channel.ChannelFragment">
|
|
|
|
<item android:id="@+id/menu_item_openInBrowser"
|
|
app:showAsAction="never"
|
|
android:title="@string/open_in_browser" />
|
|
|
|
<item android:id="@+id/menu_item_share"
|
|
android:title="@string/share"
|
|
app:showAsAction="ifRoom"
|
|
android:icon="?attr/share"/>
|
|
</menu>
|