Jellyfin Forum
Logo on the main page - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Development (https://forum.jellyfin.org/f-development)
+--- Forum: Client Development (https://forum.jellyfin.org/f-client-development)
+---- Forum: Android TV Development (https://forum.jellyfin.org/f-android-tv-development)
+---- Thread: Logo on the main page (/t-logo-on-the-main-page)



Logo on the main page - Milkflix - 2024-05-16

The AndroidTV app is awesome, thanks for all your hard work! I have a small question regarding the main page. The new logo font change is quite prominent and, while it's great to support the team, it tends to be a bit distracting for my personal taste.  I would like to adjust or remove the logo on the main page of the AndroidTV client. I tried building the project with adjusted .pngs in place of the logos, but the main logo persists. 

I do notice that this logo has transparency, but all of the images in /res/ have backgrounds. Maybe i'm looking in the wrong place. Does anyone know where this main page top left image lives? Thanks!
   


RE: Logo on the main page - SethBacon - 2024-05-17

Its actually an android vector asset under /drawable/app_logo.xml. You can use configure vector asset (or new -> vector asset) in android studio to convert an svg to the vector code


RE: Logo on the main page - jennystreaming - 2024-08-17

I wish one could switch that logo like one "kinda" can do with jellyfin-web by replacing the image asset


RE: Logo on the main page - Jackson Sun - 2025-07-01

(2024-05-16, 08:34 PM)Milkflix Wrote: The AndroidTV app is awesome, thanks for all your hard work! I have a small question regarding the main page. The new logo font change is quite prominent and, while it's great to support the team, it tends to be a bit distracting for my personal taste.  I would like to adjust or remove the logo on the main page of the AndroidTV client. I tried building the project with adjusted .pngs in place of the logos, but the main logo persists. 

I do notice that this logo has transparency, but all of the images in /res/ flappy dunk/ have backgrounds. Maybe i'm looking in the wrong place. Does anyone know where this main page top left image lives? Thanks!
Thanks for the kind words! The main logo on the AndroidTV client's home screen is likely not coming from the
/res/
PNGs but is instead embedded in the layout or drawn programmatically. Check the
leanback
module layouts, especially
fragment_main.xml or activity_home.xml
, and look for an ImageView referencing a drawable or asset. If it's loaded dynamically, you might also want to check the code in
MainFragment.java or HomeActivity.java
Hope that helps!