Questions tagged [absolutelayout]

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

166 questions
0
votes
0 answers

In Xamarin forms place the text inside view working in android but not working ios as expected

We are using DeviceDisplay.MainDisplayInfo to assign the label text in AbsoluteLayout but it works in android but not working ios as expected text value not set to exact position App.xaml.cs var mainDisplayInfo = DeviceDisplay.MainDisplayInfo; float…
newxamarin
  • 89
  • 7
0
votes
0 answers

How to set AbsolutePosition on my image using AbsoluteLayout in xamarin forms

TouchAction event triggered overall entrire position of view, but in my case it triggered only in image area using AbsoluteLayout? But now it covered overall entire position of the view. how to achieve to only image position area xaml…
newxamarin
  • 89
  • 7
0
votes
1 answer

Xamarin: Positioning in AbsoluteLayout

I would like to place my ScrollView from the Point(0,94) to the bottom of the screen. (0,94,1,1) with WidthProportional and HeightProportional does not work. The bottom of the ScrollView is out of screen. Can anyone help me?
0
votes
0 answers

Why my "0" on AbsoluteLayout it is not at the start?

I am trying to put a Image at the start of the X but it is not working. What should I do? I want to use absoluteLayout with proporcions to be able to have a good looking in differents screens. Here is my code:
0
votes
1 answer

Using OnIdiom with AbsoluteLayout

I have circular buttons and am trying to change the size of them depending on if they are on phone or tablet using AbsolutLayout. Here is my xaml:
DeZLearnsPCs
  • 81
  • 2
  • 9
0
votes
1 answer

No error in netbeans ide but java.lang.ClassNotFoundException: org.netbeans.lib.awtextra.AbsoluteLayout ERROR when java -jar jarfilename.jar

the maven app is running with no error on netbeans ide and the clean and build are running also without errors , the dependencies i didnt mention are :(mongodb,mongodb driver,mysql,itext) i tried launch4j , the .exe file didnt open. this is the POM…
0
votes
1 answer

Page with cards/frames in a listview (X.Forms 4.6+)

I had a question about X.Forms. Does anyone know how I can build such a page in X.Forms? Flow of the page: The user must be able to create a note and/or make changes. I want to display these notes one below the other (preferably in a scrollable list…
E75
  • 153
  • 3
  • 13
0
votes
3 answers

Absolute layout uasage

Is that ok to use absolute layout in my application if i know exactly the x,y that i'll draw the widget at or it'll affect the application appearance on the device ? I'm asking this question as I've read that it's deprecated
FAFI
  • 379
  • 2
  • 6
  • 21
0
votes
1 answer

Xamarin forms: Absolute Layout Listview Scrolling is not working

I have a listview inside an AbsoluteLayout and my problem is listview scrolling is not working. Please see the below screenshot of code: And the output screen is like below: I have added AbsoluteLayout for putting the Imagebutton on top of…
Sreejith Sree
  • 3,055
  • 4
  • 36
  • 105
0
votes
1 answer

How to create a jar that recognises AbsoluteLayout without throwing NoClassDefFoundError?

None of my Jar files are running. I have created a project which runs fine in Netbeans but the Jar isn't showing anything. Running it through cmd shows noclassdeffounderror etc. I created a simple project with one class that sets the JFrame visible…
user11888240
0
votes
0 answers

NoClassDefFoundError: org/netbeans/lib/awtextra/AbsoluteLayout Wrapping Problem Launch4j

I'm getting an error when I try to wrap the Jar to exe through Launch4j. I have added the library already in the NetBeans IDE and also for the Project but still the error persists. The Jar is running without any problems but when I try to wrap it,…
JavaNoob
  • 1
  • 2
0
votes
1 answer

Why does Xamarin Absolute Layout stacking not respect Children order

I am trying to achieve a layout where the content has an image on background (positioned in bottom left corner, expanding 100% vertically and 60% horizontally) The whole content is wrapped in an AbsoluteLayout, the main content is then a child to…
Jiri Kralovec
  • 1,487
  • 1
  • 10
  • 18
0
votes
2 answers

Positioning elements within a listview with xaml / xamarin

I would like to understand how to positioning elements within a listview (CustomCell) as this will be my main display element. But I have difficulties to use the AbsoluteLayout tag, maybe anyone could give some hints. I'am using VisualStudio 2017…
Frank
  • 3
  • 3
0
votes
0 answers

Xamarin Xaml C# cross-platform Can't get the image in ScrollView -> AbsoluteLayout -> Image to fill the entire width

What I'm trying to do is have a background image that will have to be scrolled down to see the whole background image. On top of that background, will be an absolute layout with buttons in random places. If you look at the background concept image I…
Matthew C
  • 21
  • 2
0
votes
1 answer

Set an ImageView outside the screen with a LinearLayout

I'm developing an Android 2.2 application. I have a linearlayout with a textview, a button and an ImageView. I want to set this imageview outside of the screen and set an animation to move it from left to right. I want to simulate a ship moving from…