How to move a image View left and right in android development (2)

此生再无相见时 提交于 2019-12-25 19:45:10

问题


I have asked this before but no answers that worked for me.

How to move a image View left and right in android development


回答1:


Please use this code:

In main.xml:

<ImageView 
    android:id="@+id/imageview"
    android:layout_width="wrap_content"
    android:layout_gravity="center"
    android:layout_height="wrap_content"
    android:background="@drawable/ic_launcher"/>

<Button 
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Left"
    android:onClick="onClickLeft"/>

<Button 
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Right"
    android:onClick="onClickRight"/>

And then in the .java file put this code:

public void onClickLeft(View view){
    ImageView t = (ImageView) findViewById(R.id.imageview);

    LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
            LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

        params.gravity=3;

        t.setLayoutParams(params);
}

public void onClickRight(View view){
    ImageView t = (ImageView) findViewById(R.id.imageview);

    LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
            LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

        params.gravity=5;

        t.setLayoutParams(params);
}

This will give you what you are looking for.



来源:https://stackoverflow.com/questions/16955221/how-to-move-a-image-view-left-and-right-in-android-development-2

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!