You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
526 B
25 lines
526 B
package com.sbw.atrue.Order.Activity;
|
|
|
|
|
|
import android.app.Activity;
|
|
import android.os.Bundle;
|
|
|
|
import androidx.annotation.Nullable;
|
|
|
|
import com.sbw.atrue.Order.R;
|
|
|
|
public class TmainActivity extends Activity {
|
|
|
|
@Override
|
|
protected void onCreate(@Nullable Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
setContentView(R.layout.activity_tmain);
|
|
initViews(); //初始化页面控件
|
|
//initEvents(); //初始化控件事件
|
|
}
|
|
|
|
private void initViews() {
|
|
|
|
}
|
|
}
|