我是android的新手。如果有人能够编写实现在imageview上拖放textview的最基本代码,我将不胜感激。或者更具体地将字母拖到虚线框中,将字母设置为放置在框架中。
我在网上发现了很多例子,但没有正常工作,而且大部分已经过时了。
答案 0 :(得分:2)
我最近使用以下链接完成了此操作。希望它也会对你有所帮助。 这是在不使用任何外部库的情况下在Android中拖放视图的简单方法
答案 1 :(得分:0)
Noam, I think you should just check out the xml file and edit the code without draging and dropping
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/image">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@String/textOnImage">
</ImageView>