Я хочу сделать сферо переместить определенное количество сантиметров вперед, но до сих пор я не смог ничего правильно работать Это код, который я есть сейчас:сферо: Как заставить его двигаться заданной длины
EditText distanceText = (EditText) findViewById(R.id.distanceText);
int inputMSec = Integer.parseInt(distanceText.getText().toString());
int time = (inputMSec - inputMSec/2);
// The ball is given the RollCommand at half speed.
RollCommand.sendCommand(mRobot, heading,0.5f);
// A handler is created to delay the Stop command.
final Handler handler = new Handler();
handler.postDelayed(new Runnable(){
@Override
public void run() {
// Makes the ball stop
RollCommand.sendStop(mRobot);
}
// The variable 'time' defines how long the ball rolls until it is told to stop.
}, time);
Есть ли какая-либо другая команда, которую я могу отправить на мяч вместо RollCommand? Или может кто-нибудь узнать, что делать с входом из EditText, чтобы расстояние оказалось правильным?