15 lines
390 B
Java
15 lines
390 B
Java
package com.ubt.jimu.controller;
|
|
|
|
import android.app.Activity;
|
|
import android.os.Bundle;
|
|
import com.ubt.jimu.R;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class SetSteeringWheelActivity extends Activity {
|
|
@Override // android.app.Activity
|
|
protected void onCreate(Bundle bundle) {
|
|
super.onCreate(bundle);
|
|
setContentView(R.layout.activity_steering_wheel_setting);
|
|
}
|
|
}
|