如何在android中拖动自定义视图

时间:2012-05-05 15:21:03

标签: android android-layout

我创建了自定义视图,并将其添加到布局xml文件中的LinearLayout。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" 
    android:id="@+id/myLinearLayout">


    <com.myapp.mydir.WarTool
        android:id="@+id/myWarTool"
        android:layout_width="138dp"
        android:layout_height="180dp"
        android:layout_marginLeft="120dp" />

</LinearLayout>

我想允许用户在LinearLayout范围内拖动组件,这样他就可以改变它的位置。 我怎么能在我的活动中做到这一点?

0 个答案:

没有答案