我以前曾问过这个问题,但没有找到对我有用的答案。
How to move a image View left and right in android development
答案 0 :(得分:0)
请使用此代码:
在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"/>
然后在.java文件中输入以下代码:
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);
}
这将为您提供所需的信息。