Tagged Questions
The gravity tag has no wiki summary.
15
votes
18answers
1k views
Gravity Sort : Is this possible programatically?
I've been thinking recently on using the Object Oriented design in the sorting algorithm. However I was not able to find a proper way to even come closer in making this sorting algorithm that does the ...
9
votes
5answers
406 views
TextView gravity not working with Hebrew
I have TextView on Hebrew that i want to be on the right side, so i'm doing
<TextView....
android:gravity="right"
</TextView>
On some phones it will be aligned to right and on some ...
9
votes
5answers
1k views
Collisions between game objects and the floor with regards to gravity?
How do games with gravity handle the relationship between moving things like players, monsters, or objects and the floor? Is the player constantly "falling into" the floor and being bounced back up? ...
8
votes
3answers
143 views
Gravity with air-time, acceleration and speed gaining
I am trying to accomplish a gravity, where airtime is included, and also acceleration.I have tried using usual gravity, which looks something like this:
velocity += gravity * dt;
position += ...
8
votes
2answers
897 views
How do I account for gravity using a wiimote's accelerometer?
For a project my team and I have been trying to track a wiimote in a 3D space using the built in accelerometer and the WiiMotion Plus gyroscope.
We’ve been able to track the rotation and position ...
8
votes
2answers
872 views
2D orbital physics
I'm working on a 2D physics engine for a game. I have gravity and masses working, using a simple iterative approach (that I know I'll have to upgrade eventually); I can push the masses around manually ...
7
votes
1answer
606 views
Cocos2D Bezier curve around object as if by gravity
I'm trying to manipulate an object. When it gets near another object, let's say a globe, I want the globe to have a gravitational pull on the original object. I know I'm supposed to use CCBezierTo, so ...
7
votes
2answers
410 views
Gravitational JavaScript
Is there any good JQuery or JavaScript plugin that can be used to apply gravitation force effect on a particular DIV?
(example: google gravity)
7
votes
4answers
2k views
Drag elements around with gravity effect
I want to accomplish something similar to what photoshop.com has and this site here: http://mrdoob.com/projects/chromeexperiments/google_gravity/
Does anyone know how to do this with javascript ...
6
votes
9answers
4k views
How do I apply gravity to my bouncing ball application?
I've written a fairly simple java application that allows you to drag your mouse and based on the length of the mouse drag you did, it will shoot a ball in that direction, bouncing off walls as it ...
5
votes
1answer
107 views
Planet's gravity
How would you simulate the effect of planets of different mass on a ship?
I'm writing a Flash game similar to asteroids that has a small ship navigating through a field of planets. The planets won't ...
3
votes
1answer
234 views
Box2D Gravity to specific object?
I see everyone saying that you add gravity like so in a Box2D world:
b2Vec2 gravity = b2Vec2(0.0f, -10.0f);
bool doSleep = false;
world = new b2World(gravity, doSleep);
The thing is though, what if ...
3
votes
1answer
95 views
Can I make a Body immune to Gravity?
I want a PhysicsWorld where only some elements are affected by gravity (as set by the Accelerometer). I've tried setting the mass of some objects to 0, but this doesn't work. Is there any way of ...
3
votes
1answer
273 views
Reposition Layout On The Fly
Given the main.xml layout below, is it possible to change the "layout_gravity" of the FrameLayout at runtime with the result shown immediately?
My main layout is a LinearLayout and a centered ...
3
votes
3answers
1k views
Android: Edittext with gravity center not working on device
In Android I'm using a single line edittext with gravity set to center. In the Emulator this works great both the hint and a blinking cursor shows up. When testing on device (Xperia X10) neither the ...
3
votes
4answers
192 views
A player-falling system (basically gravity)
I am making a game that is similar to Doodle Jump, getting your player as high as possible. Now, I got my player working, and moving. But, the problem is, I don't have gravity, or anything that will ...
2
votes
1answer
40 views
Make ball bounce and eventually come to rest
I've written some code to move a ball around the screen using an orientation sensor. I wanted to get the ball to bounce when it hits the bottom of the screen, sort of like under gravity. Could ...
2
votes
1answer
129 views
Cocos2D Gravity?
I am really looking to try to have gravity in my game. I know everyone says use Box2D, but in my case I can't. I need to use Cocos2D for the gravity.
I know Cocos2D does not have any gravity API ...
2
votes
2answers
70 views
How to apply gravity when an object fall?
I have an object(which is a ball) having its position at the top of the screen that fall directly whenever I start running the program. The problem is that the ball fall to its constant speed, I want ...
2
votes
2answers
157 views
Android Layout Gravity
I am trying to create a layout where when in Portrait mode the layout_gravity should be center_vertical and when i am in Landscape mode it should be top.
When i have center_vertical in landscape mode ...
2
votes
2answers
184 views
Change background position/gravity in ImageButton
I have the next view:
And I want it to look like this:
In the first one, the background of the green ImageButton is in the top-Left corner.
And in the second, the background of the green ...
2
votes
2answers
378 views
Sensor fusion implemented on Android?
I listened to this talk:
http://www.youtube.com/watch?v=C7JQ7Rpwn2k
which is Invensense Inc prototyping their "Sensor fusion" system, which is where they combine gyro, accelerometer, compass ...
2
votes
3answers
397 views
android remove gravity from accelerometer readings
I am developing an application for Android where I need to remove gravity from accelerometer readings. I have read multiple discussions on this problem, I have also found an algorithm here, but I ...
2
votes
1answer
80 views
How can I change the gravity of a preference page to RIGHT?
How can I change the gravity of a preference page to RIGHT?
is there any solution?
2
votes
2answers
76 views
Using time to increase velocity due to gravity problem (fail to get perfect elasticity)
I am just trying to bounce a ball to the same height it was at originally. But as soon as I introduce time, rather than frame, i lose momentum somewhere.
Taking the code down to its bare minimum I ...
2
votes
2answers
561 views
example of point-based gravity in c++
I have been looking around the net for the past 2days trying to figure out how to implement gravity into my application i'm creating. I have a sphere in Opengl and im wanting to give it gravity like a ...
2
votes
1answer
192 views
algorithm for visualizing gravity distortion (2D)
I'm working on an Android game and would like to implement a 2D grid to visualize the effects of gravity on the playing field. I'd like to distort the grid based on various objects on my playing ...
2
votes
1answer
3k views
Is it possible to specify multiple gravity values in spinner item custom_style.xml?
I have textview.xml, which is the item style for spinners.
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
...
2
votes
2answers
133 views
TrigMath, 2 masses, rigid rod computing velocity
Like everyone else, I am doing a Thrust clone just to brush up. I have arrived at the stage where the ship picks up the pod.
Essentially I have two masses (consider centre of sphere only) connected ...
2
votes
1answer
4k views
Setting margin and gravity of textview in code doesn't work
If i set only margin for my textview, that is inside linear layout, everything works.
If i set only gravity for my textview, it works. But if i set both attributes (gravity and margins), gravity ...
2
votes
3answers
3k views
Manage Layout Inside a Horizontal Oriented Radiogroup
I am using a TableLayout with TableRows as my main activity.
Inside the TableLayout is a Radio Group containing 2 Radio Buttons inside the activity (the Radio Group being inside a table row). I want ...
2
votes
2answers
6k views
Android set the gravity for a TextView programmatically
I can use android:gravity="bottom|center_horizontal" in xml on a textview to get my desired results but I need to do this programmatically.
My textview is inside a tablerow if that matters in a ...
1
vote
1answer
17 views
how to group 2 edittext's and a button in one view, and that view on the screen?
I'm trying to group 3 objects in one view, and then center that view in the parent. My current results ( freeimagehosting.net/ktxbp ) shows the username bar centered both ways, and then the password ...
1
vote
1answer
30 views
Jquery Ui Drag and drop with some ease or gravity
Basically I am designer and not a programmer. I am trying to build some application. You can see my basic code here at jsfiddle http://jsfiddle.net/mailverma/WWfTN/1/.
The idea is, user can sort 6 ...
1
vote
1answer
45 views
Can not set gravity with setGravity vertically programatically. Is this an android bug or feature?
I have a custom View with four buttons. I created the view in Java because I want to animate the buttons. I want to center the text on the buttons, but I can do this only horizontally (left-right) but ...
1
vote
2answers
180 views
Setting of ImageView's gravity to the center in android programmatically
I want to set the gravity of an array of Imageviews,ImageIcons[i] to the center with the following code,
ImageIcons[i] = new ImageView(this);
ImageIcons[i].setLayoutParams(new ...
1
vote
2answers
119 views
How to calculate continuous effect of gravitational pull between simulated planets
so I am making a simple simulation of different planets with individual velocity flying around space and orbiting each other.
I plan to simulate their pull on each other by considering each planet as ...
1
vote
3answers
77 views
How to make a sprite bounce, with gravity?
Ok, so I've been following a tutorial about floats, and making a sprite move at a speed
lower than 1 pixel per frame. Pretty easy. Now, I get the following assignment:
Add a gravity influence to ...
1
vote
1answer
124 views
Gravity Cocos2D?
In my game, I am using Cocos2D for the Game part. I am now trying to implement gravity but I am hearing that I have to use Box2D or Chipmunk. I could use those but is there any way to do this in ...
1
vote
3answers
254 views
Why doesn't gravity scale work in box2d
I am trying to turn off gravity on one of my bodies. I have used the bodyDef.gravityScale = 0.0f but I am having no luck. Here u can look at my code below. Please help.
b2BodyDef monkey1BodyDef;
...
1
vote
0answers
105 views
RK4 in 2D gravity simulation probs
In actionscript 3.0, I have two objects (a central red star and a orbiting blue planet). I want to use RK4 to plot the orbit. I'm running the simulation once per frame, and drawing once per frame. I ...
1
vote
3answers
384 views
Android relative layout gravity fill problem
I am trying to create a layout of 8 image-buttons that fill the screen.
I have the following code:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
...
1
vote
1answer
24 views
Gravity setting not working on a Samsung device
I have developed an application which displays Hebrew strings that are retrived from a server.
I've tested the application on my emulator and all of them have been aligned to right. I'm using
...
1
vote
2answers
268 views
Simulate “Newton's law of universal gravitation” using Box2D?
I want to simulate "Newton's law of universal gravitation" using Box2D .
http://en.wikipedia.org/wiki/Newton's_law_of_universal_gravitation
I went through the manual but couldnt find a way to do ...
1
vote
1answer
60 views
Is it possible to have a “stacking-cloud” div layout?
I am trying to create the following layout with divs (every of them have a random fixed width and height):
http://i.stack.imgur.com/LJADe.png
So I was trying with the float parameter but it always ...
1
vote
2answers
99 views
Centering Three Views in a RelativeLayout (Android)
I'm making a StopWatch application with Android and I'm wondering how I can center three views in the middle of the screen.
My application has a TextView to display the time, a start button, and a ...
1
vote
0answers
318 views
layout_gravity or layout_margin at the sony ericsson xperia?
My problem is to show a box with a textView (for example) with
specified layout_gravity or layout_margin at the sony ericsson xperia.
For other devices the following code do what it should do
but not ...
1
vote
5answers
623 views
Positioning an image inside an ImageView with gravity: top
╔════════════════════════════════════════════════════════╗
║ Linear Layout (Center) ║
║ ╔══════════════════════════════════════════════╗ ║
...
1
vote
2answers
321 views
Android Gravity Issues
I've been trying to center this custom view I have inside this other custom View that extends LinearLayout. This all needs to be done via code because it's all done at runtime.
I've tried the ...
1
vote
1answer
851 views
Center of gravity of a polygon
I am trying to write a php function that will calculate the center of gravity of a polygon.
I've looked at the other similar questions but I can't seem to find a solution to this.
My problem is that ...