@@ -24,12 +24,10 @@ public class LoginActivity extends Activity implements View.OnClickListener { | |||
setContentView(R.layout.activity_login); | |||
Init(); | |||
initEvents(); | |||
// appContext | |||
} | |||
//endregion | |||
//region 公有函数 | |||
/** | |||
* 初始化 | |||
*/ | |||
@@ -39,7 +37,6 @@ public class LoginActivity extends Activity implements View.OnClickListener { | |||
btn_login = findViewById(R.id.btn_login); | |||
username.setText(ConfigName.getInstance().username); | |||
} | |||
/** | |||
* 初始化按钮事件 | |||
*/ | |||
@@ -50,7 +47,6 @@ public class LoginActivity extends Activity implements View.OnClickListener { | |||
//endregion | |||
//region 点击事件 | |||
/** | |||
* 本页面点击事件监听 | |||
* | |||
@@ -1,14 +1,91 @@ | |||
package com.example.bpa; | |||
import android.app.Activity; | |||
import android.content.Intent; | |||
import android.os.Bundle; | |||
import android.view.View; | |||
import android.widget.Button; | |||
import android.widget.EditText; | |||
import android.widget.ImageView; | |||
import android.widget.TextView; | |||
public class MainActivity extends Activity { | |||
import androidx.viewpager.widget.ViewPager; | |||
import com.example.bpa.app.Main; | |||
import com.example.bpa.config.ConfigName; | |||
import com.example.bpa.helper.T; | |||
public class MainActivity extends Activity implements View.OnClickListener{ | |||
//region 界面变量 | |||
//标题 | |||
private TextView clist_title; | |||
//返回 云端 系统功能 系统设置 系统帮助 | |||
private ImageView mainreturn,CloudUpdates,SystemCapabilities,SystemSettings,SystemHelp; | |||
//页面 | |||
private ViewPager id_viewpager; | |||
//endregion | |||
//region 私有函数 | |||
@Override | |||
protected void onCreate(Bundle savedInstanceState) { | |||
super.onCreate(savedInstanceState); | |||
setContentView(R.layout.activity_main); | |||
Init(); | |||
initEvents(); | |||
} | |||
//endregion | |||
//region 公有函数 | |||
/** | |||
* 初始化 | |||
*/ | |||
private void Init() { | |||
clist_title = findViewById(R.id.clist_title); | |||
mainreturn = findViewById(R.id.mainreturn); | |||
CloudUpdates = findViewById(R.id.CloudUpdates); | |||
SystemCapabilities = findViewById(R.id.SystemCapabilities); | |||
SystemSettings = findViewById(R.id.SystemSettings); | |||
SystemHelp = findViewById(R.id.SystemHelp); | |||
id_viewpager= findViewById(R.id.id_viewpager); | |||
} | |||
/** | |||
* 初始化按钮事件 | |||
*/ | |||
private void initEvents() { | |||
//设置四个Tab的点击事件 | |||
mainreturn.setOnClickListener(this); | |||
CloudUpdates.setOnClickListener(this); | |||
SystemCapabilities.setOnClickListener(this); | |||
SystemSettings.setOnClickListener(this); | |||
SystemHelp.setOnClickListener(this); | |||
} | |||
//endregion | |||
//region 点击事件 | |||
/** | |||
* 本页面点击事件监听 | |||
* | |||
* @param v | |||
*/ | |||
@Override | |||
public void onClick(View v) { | |||
switch (v.getId()) { | |||
case R.id.mainreturn://返回按钮 | |||
break; | |||
case R.id.CloudUpdates://系统更新按钮 | |||
break; | |||
case R.id.SystemCapabilities://系统功能按钮 | |||
break; | |||
case R.id.SystemSettings://系统设置按钮 | |||
break; | |||
case R.id.SystemHelp://系统帮助按钮 | |||
break; | |||
} | |||
} | |||
//endregion | |||
} |
@@ -28,7 +28,6 @@ public class ICSApp extends Application { | |||
SdCart.getInstance().initSD(); | |||
} | |||
/** | |||
* 测试数据库 新增 修改 删除 | |||
*/ | |||
@@ -13,6 +13,7 @@ | |||
android:layout_height="30dp" | |||
android:background="@color/test"> | |||
<ImageView | |||
android:id="@+id/mainreturn" | |||
android:layout_width="20dp" | |||
android:layout_height="wrap_content" | |||
android:layout_alignParentLeft="true" | |||
@@ -48,6 +49,7 @@ | |||
android:layout_width="wrap_content" | |||
android:layout_height="wrap_content"> | |||
<ImageView | |||
android:id="@+id/CloudUpdates" | |||
android:layout_width="20dp" | |||
android:layout_height="20dp" | |||
android:layout_alignParentRight="true" | |||
@@ -55,6 +57,7 @@ | |||
android:layout_marginRight="20dp" | |||
android:src="@mipmap/scyd"/> | |||
<ImageView | |||
android:id="@+id/SystemCapabilities" | |||
android:layout_width="20dp" | |||
android:layout_height="20dp" | |||
android:layout_alignParentRight="true" | |||
@@ -62,6 +65,7 @@ | |||
android:layout_marginRight="20dp" | |||
android:src="@mipmap/yygl"/> | |||
<ImageView | |||
android:id="@+id/SystemSettings" | |||
android:layout_width="20dp" | |||
android:layout_height="20dp" | |||
android:layout_alignParentRight="true" | |||
@@ -69,6 +73,7 @@ | |||
android:layout_marginRight="20dp" | |||
android:src="@mipmap/sz"/> | |||
<ImageView | |||
android:id="@+id/SystemHelp" | |||
android:layout_width="20dp" | |||
android:layout_height="20dp" | |||
android:layout_alignParentRight="true" | |||