mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-10-31 07:13:00 +00:00 
			
		
		
		
	Merge pull request #9678 from Marius1501/change_whats_new_icon
Changed the What's New icon
This commit is contained in:
		| @@ -235,7 +235,7 @@ public class MainActivity extends AppCompatActivity { | |||||||
|                 .setIcon(R.drawable.ic_tv); |                 .setIcon(R.drawable.ic_tv); | ||||||
|         drawerLayoutBinding.navigation.getMenu() |         drawerLayoutBinding.navigation.getMenu() | ||||||
|                 .add(R.id.menu_tabs_group, ITEM_ID_FEED, ORDER, R.string.fragment_feed_title) |                 .add(R.id.menu_tabs_group, ITEM_ID_FEED, ORDER, R.string.fragment_feed_title) | ||||||
|                 .setIcon(R.drawable.ic_rss_feed); |                 .setIcon(R.drawable.ic_subscriptions); | ||||||
|         drawerLayoutBinding.navigation.getMenu() |         drawerLayoutBinding.navigation.getMenu() | ||||||
|                 .add(R.id.menu_tabs_group, ITEM_ID_BOOKMARKS, ORDER, R.string.tab_bookmarks) |                 .add(R.id.menu_tabs_group, ITEM_ID_BOOKMARKS, ORDER, R.string.tab_bookmarks) | ||||||
|                 .setIcon(R.drawable.ic_bookmark); |                 .setIcon(R.drawable.ic_bookmark); | ||||||
|   | |||||||
| @@ -51,7 +51,8 @@ enum class FeedGroupIcon( | |||||||
|     WORLD(34, R.drawable.ic_public), |     WORLD(34, R.drawable.ic_public), | ||||||
|     STAR(35, R.drawable.ic_stars), |     STAR(35, R.drawable.ic_stars), | ||||||
|     SUN(36, R.drawable.ic_wb_sunny), |     SUN(36, R.drawable.ic_wb_sunny), | ||||||
|     RSS(37, R.drawable.ic_rss_feed); |     RSS(37, R.drawable.ic_rss_feed), | ||||||
|  |     WHATS_NEW(38, R.drawable.ic_subscriptions); | ||||||
|  |  | ||||||
|     @DrawableRes |     @DrawableRes | ||||||
|     fun getDrawableRes(): Int { |     fun getDrawableRes(): Int { | ||||||
|   | |||||||
| @@ -433,10 +433,10 @@ class SubscriptionFragment : BaseStateFragment<SubscriptionState>() { | |||||||
|                 clear() |                 clear() | ||||||
|                 if (listViewMode) { |                 if (listViewMode) { | ||||||
|                     add(FeedGroupAddNewItem()) |                     add(FeedGroupAddNewItem()) | ||||||
|                     add(FeedGroupCardItem(GROUP_ALL_ID, getString(R.string.all), FeedGroupIcon.RSS)) |                     add(FeedGroupCardItem(GROUP_ALL_ID, getString(R.string.all), FeedGroupIcon.WHATS_NEW)) | ||||||
|                 } else { |                 } else { | ||||||
|                     add(FeedGroupAddNewGridItem()) |                     add(FeedGroupAddNewGridItem()) | ||||||
|                     add(FeedGroupCardGridItem(GROUP_ALL_ID, getString(R.string.all), FeedGroupIcon.RSS)) |                     add(FeedGroupCardGridItem(GROUP_ALL_ID, getString(R.string.all), FeedGroupIcon.WHATS_NEW)) | ||||||
|                 } |                 } | ||||||
|                 addAll(groups) |                 addAll(groups) | ||||||
|             } |             } | ||||||
|   | |||||||
| @@ -248,7 +248,7 @@ public abstract class Tab { | |||||||
|         @DrawableRes |         @DrawableRes | ||||||
|         @Override |         @Override | ||||||
|         public int getTabIconRes(final Context context) { |         public int getTabIconRes(final Context context) { | ||||||
|             return R.drawable.ic_rss_feed; |             return R.drawable.ic_subscriptions; | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         @Override |         @Override | ||||||
|   | |||||||
							
								
								
									
										10
									
								
								app/src/main/res/drawable/ic_subscriptions.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								app/src/main/res/drawable/ic_subscriptions.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,10 @@ | |||||||
|  | <vector xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|  |     android:height="24dp" | ||||||
|  |     android:tint="@color/defaultIconTint" | ||||||
|  |     android:viewportHeight="24" | ||||||
|  |     android:viewportWidth="24" | ||||||
|  |     android:width="24dp" > | ||||||
|  |     <path | ||||||
|  |         android:fillColor="@android:color/white" | ||||||
|  |         android:pathData="M20,8L4,8L4,6h16v2zM18,2L6,2v2h12L18,2zM22,12v8c0,1.1 -0.9,2 -2,2L4,22c-1.1,0 -2,-0.9 -2,-2v-8c0,-1.1 0.9,-2 2,-2h16c1.1,0 2,0.9 2,2zM16,16l-6,-3.27v6.53L16,16z"/> | ||||||
|  | </vector> | ||||||
		Reference in New Issue
	
	Block a user
	 Stypox
					Stypox