Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

this is android based question.

enter image description here

Here I have 2 Objects :

  1. Springs, 1.Box (objectMass)

I then tried to move the box to certain position below using this code:

objMass.setTranslationY((float) y_newPost);

But then my question is related to the Springs object. How do I ensure that the bottom of the springs follow to the position of the Box after its movement? Perhaps scaling is the answer, but to be honest, should I calculate the height of the Springs first, then doing the scaling-Y of the Springs or how? Please share a bit of code as well...

The Box (object Mass) and the Spring are using this layout:

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <ImageView
        android:id="@+id/kotak"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="200dp"
        android:src="@drawable/box" />

    <ImageView
        android:id="@+id/pegas"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="10dp"
        android:scaleType="matrix"
        android:src="@drawable/springs" />

</RelativeLayout>
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
476 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...