3
我有一系列CompoundButtons的HorizontalScrollView。我想找到給定子視圖的(x,y)。 getLocationOnScreen() getLocalVisibleRect() getChildVisibleRect()HorizontalScrollView中子視圖的位置
這樣的::我已經嘗試使用 視圖tmpView = this.findViewById(viewId); Rect hitRect = new Rect();
tmpView.getLocalVisibleRect(hitRect);
hitRect始終爲0,0 - 0,0。
我需要x,y主要是滾動到特定的子視圖。任何幫助是極大的讚賞。謝謝。