Androidstudio的DragTextView怎么导包的
要使用Android Studio中的DragTextView,需要在项目的build.gradle文件中添加以下依赖:
dependencies {
implementation 'com.github.markushi:drag-controller:1.0.0'
}
然后在您要使用DragTextView的布局文件中添加DragTextView:
<com.github.markushi.dragcontroller.DragTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Drag me!"
android:textSize="16sp"
/>
最后,同步项目以确保依赖正确导入,并重新构建项目。
原文地址: https://www.cveoy.top/t/topic/iTai 著作权归作者所有。请勿转载和采集!