0

我有项目列表,这个列表有滚动条,在 windows 滚动条工作很好,但在 android 触摸屏滚动条非常锡并且用户不能触摸滚动条,我希望用户可以滚动列表只触摸列表。田纳西州

4

1 回答 1

0

我发现了。必须获取触摸屏位置并设置移动范围。

scrollPosition1 = GUI.BeginScrollView(Rect (0,400,Screen.width,175),scrollPosition1,  Rect (0, 0, 650, 0)); 
        // touch screen 
        if (Input.touchCount==1 &&Screen.height -Input.GetTouch(0).position.y >  450 - scrollPositionHome.y && Screen.height - Input.GetTouch(0).position.y < 600 - scrollPositionHome.y )
        {
            var touchDelta2 : Vector2 = Input.GetTouch(0).deltaPosition;
            scrollPosition1.x +=touchDelta2.x;
        }
        GUI.skin.font = fnt;
        style.normal.textColor = Color.black;
        style.alignment = TextAnchor.MiddleRight;
        for (i=0;i < ImgSliderProducts.Length;i++)
        {
            GUI.DrawTexture(Rect(20+(i* 100),10,100,100), ImgSliderProducts[i],ScaleMode.ScaleToFit,true);
        }
GUI.EndScrollView(); 
于 2013-10-09T09:02:49.973 回答