3,256 questions
0
votes
1
answer
20
views
How to add an ad view in ConstraintLayout at bottom and below other stuff programmatically?
This question may look similar to the following question, but I need help solving my use case. It provides explanations for adding constraints inside the XML file.
I'm trying to migrate from ...
2
votes
1
answer
81
views
Compose ConstraintLayout does not respect constraints
I'm trying to use constraint layouts to lay down my elements, but they do not truly respect the constraint I gave to them when the content of this elements is bigger than the space available.
Is this ...
0
votes
1
answer
72
views
Constraint layout Y position not matching the margin value
I'm facing some sort of trouble setting constraint on a view on runtime with a margin.
These are the y and margin coordinate when the view is displayed to the user
I set the margin like that :
...
0
votes
2
answers
42
views
Android: Two views on opposite side without overlap taking as little space as their content
I have a very simple yet frustrating issue:
I have two views inside a layout. The layout can be any layout but I have been trying to use a ConstraintLayout.
I want these two views on opposite sides ...
0
votes
0
answers
55
views
Android MotionLayout OnSwipe glitch after programmatically created transition ends. Only happens one time, then animation is consistent
Attached at the bottom are images to help visualise the issue.
The XML MotionScene for the MotionLayout has four Transitions defined with OnSwipe mechanisms. Additionally, the fragment has two ...
0
votes
2
answers
65
views
Android: How to set Max Width to match parent's width with layout_width="wrap_content"?
The width of the TextView below needs to match it's content width (in a ConstraintLayout), however when the content includes a long text, it currently extends horizontally beyond the width of the ...
1
vote
0
answers
28
views
Why the view go outside of screen by ConstrainLayout in the condition of RTL?
Problem
Here is my layout file:
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://...
1
vote
0
answers
45
views
Android - NavController - Reopening fragment is maintaining the Accessibility focus
I've two fragments -
IntroFragment
DetailFragment
Intro layout -
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android=&...
1
vote
0
answers
71
views
Ludo Game in Android Studio - Pawn Movement Issues on Different Devices
I am currently developing a Ludo game in Android Studio and have run into a significant issue regarding the movement of pawns across different devices.
Project Setup:
I have created a grid using ...
0
votes
1
answer
47
views
Cannot display an image in Constraint Layout
I have this xml but the image is only shown when I hard the width and height of the image. I am not sure why the constraints as I provided in the code are not working.
<merge
xmlns:android=&...
0
votes
1
answer
227
views
bias in jetpack compose ConstraintLayout
For example, I want the right side to align with Image's start when the Text width is less than screen's width, and the Text will wrap automatically when the Text's width is more than screen's width ,...
1
vote
1
answer
61
views
ConstraintLayout Custom view refusing to be used as a contraint
I've created some custom views based on ContraintLayout, which is basically a pairing of a textview and some other component.
EditTextCompat and SwitchCompat.
Both of them are basically created the ...
1
vote
0
answers
29
views
Android ConstraintLayout - adjust width of Childs
I need to have a composition which dynamically adjusts child view width depending on available space.
Rules:
Right and Left dividers always visible
Dividers size: min 6dp, max 16dp
Dividers can ...
0
votes
1
answer
42
views
How to limit ScrollView content inside CardView in ConstraintLayout on Kotlin. In Runtime the content show out of bounds
I am having trouble with the content of a ScrollView inside a CardView in ConstraintLayout. In the Design view it shows as I need it but on runtime the content of the ScrollView is shown covering the ...
0
votes
2
answers
42
views
Compose ConstraintLayout's pivots aren't working as intended?
I am trying to use Compose's ConstraintLayout composable to place a composable on 30% midway through the screen from the top.
I tried using the pivotY attribute in the constraint DSL to no avail, ...