0

私はアイテムのリストを持っており、このリストにはスクロールバーがあります。Windowsのスクロールバーではうまく機能しますが、Androidのタッチスクリーンのスクロールバーでは非常に小さく、ユーザーはスクロールバーに触れることができません。TNX。

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 に答える