How to move the custom dialog box?

前端 未结 1 1291
迷失自我
迷失自我 2021-01-13 20:57

I am beginner in android. I am creating a Custom Dialog box, it is working fine. But this dialog box does not moved. How to move this custom dialog box. For example in windo

相关标签:
1条回答
  • 2021-01-13 21:36

    Dialog doesn't have any Touch event listeners so you might possibly create an Activity, implement onTouchListener on it, and in manifest file

    <activity android:theme="@android:style/Theme.Dialog">

    Now your Activity will look like a DialogBox, and you can implement the view's setOnTouchListener() and write the required code in that listener.

    0 讨论(0)
提交回复
热议问题