mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-12-23 16:40:32 +00:00
Do not hide feed buttons (show/hide & help) behind three-dots menu
This commit is contained in:
parent
2142f05a88
commit
4698d07323
@ -130,7 +130,7 @@ public class MainFragment extends BaseFragment implements TabLayout.OnTabSelecte
|
|||||||
Log.d(TAG, "onCreateOptionsMenu() called with: "
|
Log.d(TAG, "onCreateOptionsMenu() called with: "
|
||||||
+ "menu = [" + menu + "], inflater = [" + inflater + "]");
|
+ "menu = [" + menu + "], inflater = [" + inflater + "]");
|
||||||
}
|
}
|
||||||
inflater.inflate(R.menu.main_fragment_menu, menu);
|
inflater.inflate(R.menu.menu_main_fragment, menu);
|
||||||
|
|
||||||
final ActionBar supportActionBar = activity.getSupportActionBar();
|
final ActionBar supportActionBar = activity.getSupportActionBar();
|
||||||
if (supportActionBar != null) {
|
if (supportActionBar != null) {
|
||||||
|
@ -169,13 +169,7 @@ class FeedFragment : BaseStateFragment<FeedState>() {
|
|||||||
activity.supportActionBar?.subtitle = groupName
|
activity.supportActionBar?.subtitle = groupName
|
||||||
|
|
||||||
inflater.inflate(R.menu.menu_feed_fragment, menu)
|
inflater.inflate(R.menu.menu_feed_fragment, menu)
|
||||||
|
updateTogglePlayedItemsButton(menu.findItem(R.id.menu_item_feed_toggle_played_items))
|
||||||
menu.findItem(R.id.menu_item_feed_toggle_played_items).apply {
|
|
||||||
updateTogglePlayedItemsButton(this)
|
|
||||||
if (useAsFrontPage) {
|
|
||||||
setShowAsAction(MenuItem.SHOW_AS_ACTION_NEVER)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onOptionsItemSelected(item: MenuItem): Boolean {
|
override fun onOptionsItemSelected(item: MenuItem): Boolean {
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
<item
|
<item
|
||||||
android:id="@+id/menu_item_feed_toggle_played_items"
|
android:id="@+id/menu_item_feed_toggle_played_items"
|
||||||
|
android:orderInCategory="2"
|
||||||
android:checkable="true"
|
android:checkable="true"
|
||||||
android:checked="true"
|
android:checked="true"
|
||||||
android:icon="@drawable/ic_visibility_on"
|
android:icon="@drawable/ic_visibility_on"
|
||||||
@ -14,5 +15,6 @@
|
|||||||
android:id="@+id/menu_item_feed_help"
|
android:id="@+id/menu_item_feed_help"
|
||||||
android:icon="@drawable/ic_help"
|
android:icon="@drawable/ic_help"
|
||||||
android:title="@string/help"
|
android:title="@string/help"
|
||||||
app:showAsAction="never" />
|
android:orderInCategory="3"
|
||||||
|
app:showAsAction="ifRoom" />
|
||||||
</menu>
|
</menu>
|
||||||
|
Loading…
Reference in New Issue
Block a user