805 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
0
answers
56
views
How to make floating window service stay on top of eveything including intent in Android Kotlin?
I am writing an app that supposed to work with AppInfo intent for running apps. When you click on a button, floating window should display covering everything underneath it until my app is done with ...
0
votes
0
answers
251
views
Creating a True Floating Window (Overlay) in Flutter (Android & iOS) - Not Picture-in-Picture
check this image and exactly i want like this when i click my button in my app.
"I'm developing a Flutter application where I need to implement a feature that displays a separate, movable, and ...
1
vote
0
answers
26
views
No Recomposing in Floating ComposeView
I have a composable that is not recomposing in a Floating ComposeView but in an Activity, it works.
In the Floating, only LazyColumn recomposes its items but outside of that. I've tried with ...
0
votes
2
answers
173
views
How to cast a float into a string while keeping all its digits?
I know that type conversion may lead small errors due to the way floating numbers are stored in binary. Yet I do have the use case of casting a float into a string, yet now I have the issue that this ...
1
vote
0
answers
140
views
How to properly convert between types in Cython?
I have a function which looks like
cdef double __test_func(double x, double y, double z):
return (x-y)/((2*x-y)*y)**(0.5*z)
def test_func(x, y, z):
return __test_func(<double>x, <...
1
vote
0
answers
65
views
Floating video view in ASP.NET MVC not displaying video when navigating to other pages/views
I am using Agora for Video Chat in my ASP.NET MVC web app and Android. This is how it is working.
There is a separate view in ASP.NET MVC web app for VideoCall, in which there is a button on click of ...
-2
votes
1
answer
85
views
Why can we convert float in binary by multiply 2?
I know how we can convert floating to binary follow this question How to convert float number to Binary?
But how come it works this way?
0.625 ×ばつ 2 resulting 1.25 and 1.25 is a base 10 number. Why can ...
0
votes
1
answer
490
views
Exponent bias or the subtraction "Exponent - Bias" for IEEE 754 Floating Point Format
Currently reviewing some material and I see that in IEEE 754 floating point format it says:
x = (-1)^S ×ばつ (1 + Fraction) ×ばつ 2^(Exponent - Bias)
I am unclear on weather the 2^(Exponent - Bias) indicates ...
1
vote
1
answer
69
views
How to make Scaffold floatingActionButton not clickable through
I have Scaffold and floatingActionButton on it.
floatingActionButton has layout as Row with fillMaxWidth and buttons on it.
Under floatingActionButton I have some buttons and I could click on empty ...
0
votes
1
answer
120
views
How to receive a float array using esp8266 via I2c
I tried to receive array of float values via I2c using Esp8s66 (in Arduino IDE) in the following way:
void receiveEvent(int byteCount) {
// Ensure byteCount matches the size of the float array
if (...
1
vote
1
answer
106
views
A way to change Groovy default behavior with numbers
Is there is a way to change Groovy language behavior (and if not I think it could be interesting) that makes it convert numbers to float by default, instead of BigDecimal or Double?
Why do I need that?...
0
votes
1
answer
85
views
What float value is associated with each character?
Excuse me in case this questin is silly, but from what I understand, the letter A is assigned a smaller float value than the letter B, because B comes after A in the alphabet. What about symbols such ...
0
votes
1
answer
287
views
How to place a sticky element above other elements without impacting their dimensions
I'm having a problem with positioning the floating sticky element on the right side with other elements not being impacted. As you can see in the image below, there are multiple "I'm full width I'...
1
vote
1
answer
134
views
Pass a string variable in a loop within in a pipe in R for the mutate function
I am not able to get the x variables in the mutate function in R below to become floating variables. Can someone please help me trouble shoot this code.
library(dplyr)
List<-c("Go","...
0
votes
0
answers
173
views
Combining integer and float parts of a number in C++
I have three variables
uint_8 a = The integer value lets say 11111100,
uint_4 b = The fractional part of a. lets say .1001,
float c
where a is 8 bits and b is 4 bits.
Is there anyway that I ...