EditText
텍스트 상자에 가속도계로 얻은 데이터를 표시하려면 어떻게해야합니까? 그냥 TextView
Android의 텍스트 필드에 데이터 표시
public void onSensorChanged(SensorEvent event) {
float x,y,z;
x=event.values[0];
y=event.values[1];
z=event.values[2];
axex =(EditText)findViewById(R.id.editText1);
axex.setText(X+x+ms^2);
axey=(EditText)findViewById(R.id.editText2);
axey.setText(Y+y+ms^2);
axez=(EditText)findViewById(R.id.editText3);
axez.setText(Z+z+ms^2);
}
프로그래밍 문제 인 경우 프로그램이 없습니다. – Snicolas