Questions tagged [absolutelayout]

Deprecated Android layout that lets you specify exact locations (x/y coordinates) of its children views.

166 questions
0
votes
2 answers

Android To make part of the visible screen scrollable

I searched net to find the answer for my following problem. But no answer found. I myself tried several ways, but I am still a novice at Android. What I found on net related to scrolling is official documentation and examples of scrolling on…
0
votes
0 answers

set absolute position of image to object its bound to

When a button is clicked on my XML, an image tag is created and on object is added to my list in my viewmodel. This is the object that is created public unit(float x, float y, int team) { this.X = x; this.Y = y; …
tgm_learny
  • 11
  • 7
0
votes
1 answer

Binding AbsoluteLayout.LayoutBounds in Xamarin.Forms

I am trying to layout some rectangles in an AbsoluteLayout using a ViewModel to set LayoutBounds:
0
votes
1 answer

Android: Scale fixed Layout down

i want to scale my android application, basically i developed it for 800x480 display with a AbsoluteLayout. This is necessary for my Application, i can't change it. Now the Problem: When i start my app in the Emulator the buttons disappear and the…
Felix K.
  • 6,201
  • 2
  • 38
  • 71
0
votes
1 answer

Programmatically alignment?

I've attached one image. In that image one checkbox and spinner are in undefined position. I'm using Absolute layout but also, i can't fix that to wherever. So, i need to set those by programmatically. Is this possible? Anyone help me. Thanks in…
user905216
0
votes
0 answers

Correct AbsoluteLayout positioning/overlay

The main goal of the task to create AutoSuggest control. In my case AutoSuggest control is custom control inherited from Grid
Ant T
  • 7
  • 3
0
votes
0 answers

Is there a way to have a list where each item has an optional dropdown, that overlaps the list items below it?

I am trying to make a list of Entry fields that is loaded N times, with some text and comments together. This is my layout And when the text is typed I am trying to make a suggestion of text back from a predefined text collection but, the suggestion…
0
votes
1 answer

Absolute positioning on the screen, and overlay of image of to the top portion of app

Absolute positioning on scaffold/screen. 1 - The white container in the 1st photo - how to align this as an absolute position on the bottom of the screen / how is it done as the best method? 2 - The container has to be overlaid on the top of the…
Vaishnav k
  • 21
  • 3
0
votes
1 answer
0
votes
3 answers

Absolute positioning of text on a container - flutter

I want to absolutely position a text on a container. return Container( height: 150, width: 150, decoration: BoxDecoration( color: Color(0xE5E5EAee), borderRadius: BorderRadius.circular(20)), child:…
0
votes
1 answer

StackLayout stays above controls, but allows tap on buttons and entries in .Net MAUI

I have a StackLayout inside an AbsoluteLayout with some entries and a button, and the StackLayout has the LayoutBounds equal to "0,0,1,1" and the LayoutFlags equal to "All". When I tap on the button, I show a Grid that has the same AbsoluteLayout…
0
votes
1 answer

AbsoluteLayout proportional position flag not working properly in .net MAUI

I'm trying to position a StackLayout to the bottom of the page using an AbsoluteLayout as demonstrated in below code sample. However the position flag is treated as absolute value not proportional resulting in having the StackLayout positioned in…
Ali Alfaraj
  • 207
  • 3
  • 12
0
votes
1 answer

How can I achieve WYSIWYG in NetBeans GUI Builder?

I've spent many fruitless hours trying to create what I consider to be a very simple GUI. One thing that makes it simple is that I don't even expect it to be resizeable. I want it to display just the way I've laid it out. Simple as that. There's…
Chap
  • 3,649
  • 2
  • 46
  • 84
0
votes
1 answer

Is there a way not to reload the whole AnsoluteLayout when adding views to its Children in Xamarin.Forms?

I am using a Xamarin.Forms AbsoluteLayout when I want new controls to be added to it when the user scrolls. Why? Because adding everything when the page 1st opens would take a lot of time since there are lots of items. I am using an AbsoluteLayout,…
user4514782