图像视图的问题

发布于 2024-11-16 22:09:30 字数 1092 浏览 1 评论 0原文

我正在尝试做一个拖放应用程序。为此,我首先使用以下代码创建了一个 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);
    }
}.

但我越来越

I am trying to do a drag and drop application. For that I first created a main.xml with the following code.

<?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>

and created a Java file to view the main.xml content.

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);
    }
}.

but I am getting

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最单纯的乌龟 2024-11-23 22:09:31

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

检查这个:拖放

First note that drag and drop feature is included in API level 11.

Check this : Dragging and Dropping

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文