first off, this is more of a question about animating than a specific problem coding. i need to fill in the broad strokes left by the research i've been doing.
what i'm trying to do:
the activity should load with only the a togglebutton visible. when the button is touched, a png will be animated to a certain position relative to the togglebutton. also, another button will slide in from off screen and slide off if/when the togglebutton is pressed again.
what i can't figure out:
i can draw an image, but only via xml. creating an imageview and setting the background programmatically does nothing.
when i draw from xml, i can't move the image when the togglebutton is pressed like i want to. when i call getPositionOnScreen() i get a null pointer, even though the complier can see i'm referring to the imageview described in both xml and in code.
i'm calling getPositionOnScreen because via xml, i have the image positioned behind the togglebutton so that it's not visible until the button has been pressed and the image starts moving. the idea is that with different screen sizes i won't know exactly where the view is until runtime. getPostionOnScreen allows me to get the coordinates of the imageview so i know where it has been positioned. when i have a start position, can tell it to "move up" on the screen from behind the togglebutton by simply adding to x or y until it's where i want.
this is the code to draw the image (inserted in the onCreate method).
image= (ImageView) new ImageView(this);
image.setImageResource(R.drawable.pic);
this is the code i'm using to animate. when the button is clicked, it calls this method on the view from the listener.
private void activate(){
int loc[] = new int [2];
image.getLocationOnScreen(loc);
int fromXDelta = loc[0];
int fromYDelta = loc[1];
int toYDelta = fromYDelta;
int toXDelta = fromXDelta - 30;
TranslateAnimation translateAnimation = new TranslateAnimation
(-fromXDelta, -toXDelta, -fromYDelta, -toYDelta);
translateAnimation.setDuration(500);
translateAnimation.setFillEnabled(true);
image.startAnimation(translateAnimation);
}
i'm well aware that this is horribly wrong and won't work. what i need to understand is why. any help would be very welcome.