[问题] 手机转android wear

楼主: a504104 (softlight)   2015-01-01 14:12:56
大家好,
因为喜欢打球,
不过常常忘记打球时的比分,
所以想写一个android wear的方便记分,
功能是上下滑动萤幕的左右边,去控制左右两边的分数,
长按萤幕则清除分数,
因为没有写程式的经验,
所以先在手机上写,
再转成android wear,
目前在手机上的动作已经达成自己所想要的功能,
在转成android wear时出现了些问题,
从书上看写wear的元件要方在setOnLayoutInflatedListener内,
不过我将两个元件(左右边的分数)textview放在setOnLayoutInflatedListener内,
再用原本手机上已经可以动作的
public boolean onTouchEvent(MotionEvent event)
去控制inumR跟inumL,上下滑动android wear的左右萤幕则无动作,
仅能看到layout,
请问是否要在inumR跟inumL下面增加跟ontouchevent有关的连结?
谢谢
final WatchViewStub stub = (WatchViewStub)
findViewById(R.id.watch_view_stub);
stub.setOnLayoutInflatedListener(new
WatchViewStub.OnLayoutInflatedListener() {
@Override
public void onLayoutInflated(WatchViewStub stub) {
inumR = (TextView) findViewById(R.id.numR);
inumL = (TextView) findViewById(R.id.numL);
}
});
}

Links booklink

Contact Us: admin [ a t ] ucptt.com