8,646 questions
3
votes
0
answers
56
views
Android "paddingHorizontal" Doesn't Work on TextInputEdieText
XML:
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/name_inputLayout"
android:layout_width="match_parent"
android:layout_height="...
0
votes
1
answer
49
views
Android Material3 Outlined Button Looks Different from Guideline
XML:
<Button
android:id="@+id/send_button"
style="@style/Widget.Material3.Button.OutlinedButton"
android:layout_width="wrap_content"
android:...
0
votes
0
answers
37
views
When using Material 3's Dynamic Color feature, almost all text in my app becomes too faded
My goal is to make text with Dynamic Color enabled more bright and readable, like how it looks without the Dynamic Color. I know that I can set text color programmatically, but this is an approach, ...
0
votes
0
answers
21
views
Android HideViewOnScrollBehavior Affects Floating Action Button Anchor Position with BottomAppBar
Goal: Hide BottomAppBar with center FloatingActionButton when scrolling behavior happens (programatically).
Issue: Just by adding HideViewOnScrollBehavior, the position of FloatingActionButton is ...
0
votes
1
answer
71
views
M3 Expressive Connected Button Group Toggling
I am using a Connected Button Group in the MDC-Android: Expressive implementation (Java).
How can I set the styling of the <Button />s in the <MaterialButtonGroup /> when pressed so that ...
0
votes
0
answers
25
views
How do you import Material Icons to NativeScript project?
I'm trying to build a Material Design checkbox using Material Icons. Specifically, just for this case, I plan to use the check_box_outline_blank, select_check_box, and indeterminate_check_box.
Here's ...
0
votes
1
answer
83
views
React Material - how to stop tabs unloading content
Being a little bit newish to React.
I am just prototyping a UI in Material Design 3 and React (TypeScript). Using the most very basic example - the issue I am having is with tabs unloading when they ...
0
votes
0
answers
52
views
Using Google Noto CJK Variable Font Collection in Android Apps
My final goal is to load fonts from a Variable Font Collection file. Most phones sold in China enable users to use custom fonts system-wide(ideally), but most of those fonts don't have full support ...
1
vote
1
answer
161
views
How do I change the dropdown‐arrow size in Angular Material mat-select?
I’m using Angular Material 19 and I have managed to override the arrow color via the select-overrides mixin:
Angular Material - Select - Styling
@include mat.select-overrides((
enabled-arrow-...
1
vote
0
answers
43
views
Material Design 3 unclear about spacing between fext fields
Me and my fellow Android devs are working on a component to display multiple text fields (a form, so to say) and came across a problem with vertical spacing. It is a fairly complex application with ...
0
votes
1
answer
444
views
Status Bar Color Ignores android:statusBarColor and Java Override in Material Design 3 (Android Studio Meerkat 2024.3.2) [closed]
I'm transitioning from Material Design 2 to Material Design 3 using Java + XML in Android Studio Meerkat Feature Drop | 2024.3.2 Patch 1. I’m building a new app with Theme.Material3.DayNight....
0
votes
0
answers
98
views
How to migrate Material 3 alert dialog animation from Emphasized motion to Expressive motion?
I'm updating my alert dialog transitions to follow the latest Material 3 motion specification, and I'd like to migrate from the Emphasized motion (which uses emphasized.decelerate / accelerate) to the ...
0
votes
1
answer
55
views
How to clip the content to match to the corner of a Card in Compose?
How can I clip the content to match the corner of the Card.
@Composable
fun PreviewWindow() {
Card {
Column(
modifier = Modifier
.padding(2.dp)
....
1
vote
0
answers
78
views
Jetpack Compose AppBar transformed SearchBar
Like the same element as in the video, with the expand animation. Is there anything native?
in jetpack compose and material 3. I found only this implementation:
@ExperimentalMaterial3Api
@Composable
...
0
votes
0
answers
61
views
Angular Material M3 custom theme specific color
I'm implementing custom Angular Material M3 theme like described below. My question is if anybody could help me: How can I use a specific item from e.g. the primary color map (for example 30) as a ...