Questions tagged [floating]

This tag is related to GUI elements that either should be or appear to be floating above a panel or background, or in case of certain types of general layout.

This tag is related to GUI elements that either should be or appear to be floating above a panel or background, or in case of certain types of general layout.

800 questions
6
votes
1 answer

Android informations about floating overlays/elements over other apps

I'm looking for some informations about floating overlays Not overlays of a mapView but overlays floating over other applications. For example those applications are doing what I'm looking for…
yuuzhantar
  • 61
  • 3
5
votes
1 answer

Floating view inside an app

I am trying to achieve a floating draggable view that will be displayed across all the activities of a single app. Meaning there will be a view of 30% height and 50% width of the screen that the user will be able to drag on the screen and it will be…
Michael Kessler
  • 14,245
  • 13
  • 50
  • 64
5
votes
1 answer

What is this feature of floating point?

Real Close to the Machine: Floating Point in D https://dlang.org/articles/d-floating-point.html says Useful relations for a floating point type F, where x and y are of type F ... x>0 if and only if 1/(1/x) > 0; x<0 if and only if 1/(1/x) <…
yohabe
  • 81
  • 2
5
votes
5 answers

How to change Floating Action button shadow colour

I want to change Floating Action button shadow colour from black/grey to colorprimary/custom color of shadow ** shadow example like below image with **center blue FAB button with light blue shadow not grey shadow. But we can change the FAB button…
Anant Shah
  • 3,744
  • 1
  • 35
  • 48
5
votes
4 answers

How do I put one

I just finished doing HTML/CSS with Codecademy. One of the "projects" there is to make your own resume. I took the HTML/CSS from that project, and I'm tweaking it to make the resume look better. I'm currently trying to put one div - the part of the…
user5442867
  • 51
  • 1
  • 2
5
votes
4 answers

Floating Action Button with square shape

When I set a color to my fab, it looks like so: My layout xml:
Jonathan I
  • 240
  • 1
  • 4
  • 18
5
votes
1 answer

Why can't a negative normalized floating point binary number start with 11?

Studying for A level computing we are repeatedly told that a negative normalised floating point binary number is not normalised if it starts with 11 by textbooks, exam questions and teachers. In the case of minus 11 in twos compliment it can be…
5
votes
6 answers

HTML CSS div floating left goes under , below div floating right?

I'm hoping someone can help me: I have a left column container #left-column, with a float:left; and some elements (slideshow, images, text) floating on the right. Everything is placed in the main container which has a width value of 990px; The left…
mlclm
  • 725
  • 6
  • 16
  • 38
5
votes
2 answers

How to implement a overlay button which is floating over the content view

in some iPhone apps i saw a button which was floating over the content view, eg. in the app EyeEm. When the user is scrolling the content, the button remains where it is and is still an interaction element. Ho do I implement this? My approach…
jerik
  • 5,714
  • 8
  • 41
  • 80
5
votes
2 answers

CSS to position one div under another that is float: left

I have this:
Ericjt
  • 95
  • 2
  • 3
  • 6
5
votes
1 answer

Floating items in WPF

How can I create a control container where every item (control) behaves like a Floating DIV (in HTML), like this video (considering that each folder is a control)?
user962284
  • 670
  • 1
  • 12
  • 29
4
votes
1 answer

XAML for floating window in AvalonDock

Can someone provide me with an AvalonDock XAML code piece that when run opens the app with a floating window instead of being always docked inside the dock pane? I've seen programmatic ways to do it, but I thought there must be a way to specify it…
Wessam Bahnassi
  • 145
  • 1
  • 8
4
votes
1 answer

type 'SliverAppBar' is not a subtype of type 'PreferredSizeWidget' FLUTTER issue

This issue type 'SliverAppBar' is not a subtype of type 'PreferredSizeWidget' FLUTTER issue. came while trying to create a floating toolbar using SilverAppBar in FLUTTER. class AppTheme { setAppBar(context, String title) { return new AppBa( …
jazzbpn
  • 6,441
  • 16
  • 63
  • 99
4
votes
1 answer

Python and importing floating-point numbers from the excel file

So I have an excel file that looks like this Name R s l2 max_amplitude ref_amplitude R_0.3_s_0.5_l2_0.1 0.3 0.5 0.1 1.45131445 1.45131445 R_0.3_s_0.5_l2_0.6 0.3 0.5 0.6 3.52145743 3.52145743 ... R_1.1_s_2.0_l2_1.6 …
Mato
  • 81
  • 5
4
votes
2 answers

Android Floating Button not showing

I try to make drawing page with canvas and add floating button in corner for some actions. But it is not appearing. This is my classes DrawView.java public class DrawView extends View implements View.OnTouchListener { private List points =…
1 2
3
53 54