我正在使用frameLayout并尝试在单击imageButton时以编程方式在另一个视图上显示。我使用框架布局,因为我被告知它允许你互相放置视图。但是,单击按钮时,imageView会在另一个视图后面消失,而不是在前面。 这是我的布局 - “洞”是imageButton,每当点击它时,imageView“goola”需要移动它。
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="${relativePackage}.${activityClass}" >
<ImageButton
android:id="@+id/hole"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="100dp"
android:background="@android:color/transparent"
android:src="@drawable/home0" />
<ImageView
android:id="@+id/goola"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:src="@drawable/goola" />
这里是JAVA(onClick方法)
@Override
public void onClick(View v)
{
ImageButton b=(ImageButton)v;
int[] location = new int[2];
b.getLocationOnScreen(location);
float startX = location[0];
float startY = location[1];
goola.setX(startX);
goola.setY(startY);
}
如果有解决方案的人可以写出一个好的答案,我将不胜感激! 非常感谢提前:)