2025-07-01, 03:18 AM
(This post was last modified: 2025-07-11, 12:41 PM by Jackson Sun. Edited 1 time in total.)
(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.Thanks for the kind words! The main logo on the AndroidTV client's home screen is likely not coming from the
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!
/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!