imageview的问题

时间:2011-06-23 07:11:44

标签: android compiler-errors

我正在尝试拖放应用程序。为此,我首先使用以下代码创建了main.xml

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
 >
<com.hide.move.MyImageView
android:id="@+id/Image1"
android:src="@drawable/sarathphoto7"
android:layout_weight="50" 
android:adjustViewBounds="true"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
/>

 <com.hide.move.MyImageView
android:id="@+id/Image2"
android:src="@drawable/sarathphoto6"
android:layout_weight="50" 
android:adjustViewBounds="true"
android:layout_width="wrap_content"
android:layout_height="200px"
/>


</LinearLayout>

并创建了一个Java文件来查看main.xml内容。

public class hidenmove extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
}.

但我正在

1 个答案:

答案 0 :(得分:0)

首先请注意,拖放功能包含在 API级别11 中。

请检查:Dragging and Dropping