Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的应用程序中使用 TouchListView。将所有活动转换为片段后,我有一个问题:内部带有 touchlistview 的片段占我平板电脑屏幕的 50%。如果我拖动一行,则拖动的行正好在屏幕的中间。但这扭曲了另一个片段。我能做些什么来防止覆盖不同的片段?
提前感谢托马斯
发现我使用了较旧的 TouchListView 实现。
必须更新以下行
private void startDragging(Bitmap bm, int x, int y) {
从
mWindowParams.gravity = Gravity.TOP;
到
mWindowParams.gravity = Gravity.TOP|Gravity.LEFT;
就是这样 :-)