图像视图的问题
我正在尝试做一个拖放应用程序。为此,我首先使用以下代码创建了一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先请注意,API 级别 11 中包含拖放功能。
检查这个:拖放
First note that drag and drop feature is included in API level 11.
Check this : Dragging and Dropping