Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Widget preview updates #1541

Merged
merged 10 commits into from
Mar 27, 2025
Merged

Conversation

secondsun
Copy link
Contributor

This PR

  • Adds a widget preview layout
  • Add a widget preview Image
  • Adds a generated widget preview
  • Cleans up some widget layout issues on denser homescreens and in landscape

@secondsun secondsun requested a review from a team as a code owner March 21, 2025 17:35
@secondsun secondsun requested a review from riggaroo March 21, 2025 17:35
Copy link

Warning

You have reached your daily quota limit. As a reminder, free tier users are limited to 5 requests per day. Please wait up to 24 hours and I will start processing your requests again!

Comment on lines +248 to +252
style = TextStyle(
fontSize = 12.sp,
fontWeight = FontWeight.Medium,
color = fgColor
),
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should this be getting the style from the theme itself?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It does, fgColor is set to GlanceTheme.colors.onPrimaryContainer

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The whole TextStyle though I mean, fontSize, weight etc.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps, but I feel like that refactor is outside of the scope of this PR. The goal was to add widget previews.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thinking more, yes it could, no I don't think we should.

We'd need to build a bunch of XML resources, and that's not the pattern we're tyring to demonstrate with Glance widgets. See : https://github.com/android/platform-samples/blob/main/samples/user-interface/appwidgets/src/main/java/com/example/platform/ui/appwidgets/glance/layout/collections/layout/ImageTextListLayout.kt#L383 for an example

Copy link

Warning

You have reached your daily quota limit. As a reminder, free tier users are limited to 5 requests per day. Please wait up to 24 hours and I will start processing your requests again!

@@ -147,6 +148,7 @@ kotlinx-collections-immutable = { module = "org.jetbrains.kotlinx:kotlinx-collec
kotlinx-coroutines-android = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version.ref = "coroutines" }
kotlinx-coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "coroutines" }
kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "kotlinx-serialization-json" }
android-material3 = { group = "com.google.android.material", name = "material", version.ref = "android-material3" }
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We intentionally removed this dependency as it wasn't needed for Compose in general and it brings in a whole bunch of library code that isn't needed, can glance not get the theme properties from the GlanceTheme?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is for preview layouts. Preview layouts allow for dynamic color and dark mode support between android 12 and 15. Android 15 and up can use generated previews.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a way we can use system themes for those versions? or limit this import to only the widget module?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It should only be imported in the glanceWidget build. Can version catalogs be in fetaure modules?

@secondsun secondsun force-pushed the widget_preview_updates branch from d76873f to 1698f4d Compare March 21, 2025 18:21
Copy link

Warning

You have reached your daily quota limit. As a reminder, free tier users are limited to 5 requests per day. Please wait up to 24 hours and I will start processing your requests again!

@secondsun secondsun force-pushed the widget_preview_updates branch from 0343050 to d2171cc Compare March 21, 2025 19:12
@secondsun secondsun force-pushed the widget_preview_updates branch from d2171cc to 2c6678f Compare March 21, 2025 19:15
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this in xml?

@secondsun secondsun merged commit 57913c5 into android:main Mar 27, 2025
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants