如何使用拖动n
drop(或其他)将imageview从ScrollView移动到RelativeLayout?
Android 2.2 / 2.3.3 +
我需要OnTouch采取imageview并顺利移动到relativeLayout ...
对不起我的英文..
答案 0 :(得分:0)
我不确定这是否是您想要的,但您可以简单地转到XML(没有拖放的图形布局),剪切ImagaView代码并将其放在ScrollView布局之外,
请记住,ScrollView只能生成一个对象,因此您可以在图像周围创建一个LinearLayout
从此
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentTop="true"
android:layout_above="@id/adView1">
<RelativeLayout
android:id="@+id/relativeLayout2"
android:layout_width="fill_parent"
android:layout_height="352dp" >
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/buttongod" />
</RelativeLayout>
</ScrollView>
到这个
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentTop="true"
android:layout_above="@id/adView1"
<RelativeLayout
android:id="@+id/relativeLayout2"
android:layout_width="fill_parent"
android:layout_height="352dp" >
</RelativeLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/buttongod" />
</LinearLayout>
</ScrollView>