How To Move A Image View Left And Right In Android Development (2)
I have asked this before but no answers that worked for me. How to move a image View left and right in android development
Solution 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:
publicvoidonClickLeft(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);
}
publicvoidonClickRight(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.
Post a Comment for "How To Move A Image View Left And Right In Android Development (2)"