Questions tagged [overlapping]

Do not use this tag. The overlapping tag is used to describe elements on a webpage, absolutely positioned with CSS so they overlap each other.

The tag is used to describe elements on a webpage - absolutely positioned with CSS - so they overlap each other. Overlapping elements on a webpage can help highlight, prompt, and give priority to important content.

937 questions
9
votes
2 answers

SQL to find overlapping time periods and sub-faults

Long time stalker, first time poster (and SQL beginner). My question is similar to this one SQL to find time elapsed from multiple overlapping intervals, except I'm able to use CTE, UDFs etc and am looking for more detail. On a piece of large scale…
8
votes
1 answer

How to capture onTouch events on two overlapping views?

Layout !* Container is a relative layout contains two custom views: OuterView1 and InnerView2 * Outer View1 is a custom view, matching the parent’s size (full screen) * Inner View2 is also a custom view, laid on top of OuterView1 overlapping…
Rama Palaniappan
  • 365
  • 1
  • 3
  • 12
8
votes
4 answers

Fragments are getting overlapped on back button

I have created 3 Fragments namely (FragmentA, FragmentB, FragmentC) and one MainActivity. There is a button in each fragment which replaces itself with next Fragment till FragmentC. I am replacing FragmentA (with) FragmentB (then with)…
rajahsekar
  • 916
  • 1
  • 11
  • 25
8
votes
1 answer

What is overlapping in memmove() definition?

I was reading from a c++ reference about memcpyand memmove and they seems to be doing the same thing except that memmove has a specific think called (allowing the destination and source to overlap). What is overlapping and when that happens?
rullof
  • 7,124
  • 6
  • 27
  • 36
7
votes
4 answers

Merging intervals in one pass in SQL

Let's say I have a table with two columns: start and end, both integers, and the table is ordered by the first, then second column. Each row represents an interval. What I need is the table of merged intervals: all overlapping or adjacent intervals…
reinierpost
  • 8,425
  • 1
  • 38
  • 70
7
votes
6 answers

Android Toolbar overlapping TabLayout in CollapsingToolbarLayout

I'm trying to make CollapsingToolbarLayout with Toolbar and TabLayout below it, but they overlapping each other and I get this I've tried many solutions, but still have this problem. Here is my xml:
7
votes
1 answer

Data.Vector.Binary overlaps Binary [a] instance

In my application I need to serialize a vector containing an arbitrary datatype, in this case is a list of Doubles. For serializing the vector I'm importing Data.Vector.Binary. When loading the module in GHCi the following error arises: Overlapping…
uu1101
  • 73
  • 1
  • 4
7
votes
3 answers

How to detect if polygons overlap in leaflet

I am using leaflet draw to create polygons. My requirement is when a user draws a polygon ,it should not intersect/overlap with existing polygons. I have used point in polygon leaflet to detect if point falls within the polygon and it is…
user1533947
  • 197
  • 1
  • 1
  • 7
7
votes
1 answer

Two bar charts in matplotlib overlapping the wrong way

I'm creating a bar plot with matplotlib in Python, and I'm having a bit of a problem with the overlapping bars: import numpy as np import matplotlib.pyplot as plt a = range(1,10) b = range(4,13) ind = np.arange(len(a)) width = 0.65 fig =…
Conti
  • 111
  • 2
  • 6
6
votes
1 answer

Input text overlapping in TextField multiline area of Material-UI

The input text in a Material-UI Multiline TextField is overlapping each other (not the label). See sample and code in CodeSandBox: https://codesandbox.io/s/keen-wu-yquk6 I suspect it may have something to do with the fact that I increased the…
Stephan Du Toit
  • 789
  • 1
  • 7
  • 19
6
votes
4 answers

Flot labels overlapping with my line graph

I’m using the line graph feature of flot but I’m having some difficulty keeping my x and y-axis labels from overlapping onto the graph. My graph looks like this Ideally, I would like to move the labels to the left and bottom so that they don’t…
Dave
  • 15,639
  • 133
  • 442
  • 830
6
votes
0 answers

How does Tomcat handle overlapping/shadowing names in context paths or URLs?

How does Tomcat 8.0 serve http requests in the following scenario? Let's say we have deployed the two web applications "ROOT.war" and "Foo.war" on a server with the name "www.host.com". Furthermore, let's assume that ROOT.war contains a subfolder…
Joerg
  • 790
  • 2
  • 10
  • 23
6
votes
4 answers

How to force report items to overlap?

I'm trying to create doughnut chart and insert label inside the chart's hole. When I render report, label is being moved outside the chart. Is it possible to force report items to overlap instead of position it automaticaly?
Konrad Z.
  • 1,592
  • 4
  • 20
  • 34
6
votes
1 answer

What happens if I have several overlapping QTimer

Suppose I have 2 QTimer objects with 10, 20 as their intervals. And suppose I want to run slot1() with timer 1 timeout signal and slot2 with timer 2. So running order of slot1 and slot2 is something like this : …
s4eed
  • 7,173
  • 9
  • 67
  • 104
6
votes
4 answers

How to check overlapping among multiple date ranges in PHP?

There are many posts about checking overlapping between two dates. However I couldn't find any which talks about how to check among multple ranges. Say I have this array: $ranges = [ array('start'=>'2014-01-01' , 'end'=>…
Aladdin Mhemed
  • 3,817
  • 9
  • 41
  • 56
1
2
3
62 63