@ -1 +1 @@
|
||||
My Application
|
||||
register
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="RenderSettings">
|
||||
<option name="showDecorations" value="true" />
|
||||
</component>
|
||||
</project>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
@ -1,48 +0,0 @@
|
||||
package com.example.myapplication;
|
||||
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
import android.view.View;
|
||||
import android.widget.Button;
|
||||
import android.widget.EditText;
|
||||
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
|
||||
import com.example.myapplication.activity.RegisterActivity;
|
||||
import com.example.myapplication.activity.UserActivity;
|
||||
|
||||
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
|
||||
private Button registerButton, loginButton;
|
||||
private EditText usernameText, paswdEdit;
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.user_login);
|
||||
init();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
switch (v.getId()) {
|
||||
case R.id.register:
|
||||
Intent intent1 = new Intent(MainActivity.this, RegisterActivity.class);
|
||||
startActivity(intent1);
|
||||
break;
|
||||
case R.id.login:
|
||||
Intent intent2 = new Intent(MainActivity.this, UserActivity.class);
|
||||
startActivity(intent2);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
//界面组件初始化
|
||||
private void init() {
|
||||
usernameText = findViewById(R.id.username);
|
||||
paswdEdit = findViewById(R.id.password);
|
||||
loginButton = findViewById(R.id.login);
|
||||
loginButton.setOnClickListener(this);
|
||||
registerButton = findViewById(R.id.register);
|
||||
registerButton.setOnClickListener(this);
|
||||
}
|
||||
}
|
@ -1,92 +0,0 @@
|
||||
|
||||
package com.example.myapplication.activity;
|
||||
|
||||
import android.graphics.Color;
|
||||
import android.os.Bundle;
|
||||
import android.view.View;
|
||||
import android.widget.TextView;
|
||||
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
import com.lljjcoder.citypickerview.widget.CityPicker;
|
||||
import com.example.myapplication.R;
|
||||
|
||||
public class RegisterActivity extends AppCompatActivity implements View.OnClickListener {
|
||||
private TextView cityText;
|
||||
// private citypicker cityPicker;
|
||||
private CityPicker cityPicker;
|
||||
|
||||
|
||||
@Override
|
||||
protected void onCreate(@Nullable Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.user_register);
|
||||
init();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
private void init() {
|
||||
cityText = findViewById(R.id.reg_province);
|
||||
cityText.setOnClickListener(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
switch (v.getId()) {
|
||||
case R.id.reg_province:
|
||||
initCityPicker();
|
||||
cityPicker.show();
|
||||
break;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void initCityPicker() {
|
||||
cityPicker = new CityPicker.Builder(RegisterActivity.this)
|
||||
.textSize(16)
|
||||
.title("地址选择")
|
||||
.backgroundPop(0xa0000000)
|
||||
.titleBackgroundColor("#EFB81C")
|
||||
.titleTextColor("#000000")
|
||||
.backgroundPop(0xa0000000)
|
||||
.confirTextColor("#000000")
|
||||
.cancelTextColor("#000000")
|
||||
.province("xx省")
|
||||
.city("xx市")
|
||||
.district("xx区")
|
||||
.textColor(Color.parseColor("#000000"))
|
||||
.provinceCyclic(true)
|
||||
.cityCyclic(false)
|
||||
.districtCyclic(false)
|
||||
.visibleItemsCount(7)
|
||||
.itemPadding(10)
|
||||
.onlyShowProvinceAndCity(false)
|
||||
.build();
|
||||
cityPicker.setOnCityItemClickListener(new CityPicker.OnCityItemClickListener() {
|
||||
@Override
|
||||
public void onSelected(String... strings) {
|
||||
String province=strings[0];
|
||||
String city=strings[1];
|
||||
String district=strings[2];
|
||||
cityText.setText(String.format("%s %s %s", province, city, district));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onCancel() {
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1,58 +0,0 @@
|
||||
package com.example.myapplication.activity;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
import android.view.View;
|
||||
import android.widget.Button;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.TextView;
|
||||
|
||||
import androidx.annotation.Nullable;
|
||||
|
||||
import com.example.myapplication.MainActivity;
|
||||
import com.example.myapplication.R;
|
||||
|
||||
public class UserActivity extends Activity {
|
||||
private ImageView userIconImage;
|
||||
private TextView usernameText, userSexText, userCityText;
|
||||
private LinearLayout usernameLine, userSexline, userCityLine, userPayLine, userSettingLine, userGeneralLine;
|
||||
|
||||
@Override
|
||||
protected void onCreate(@Nullable Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.content_user);
|
||||
init();
|
||||
|
||||
Button button;
|
||||
button = findViewById(R.id.button);
|
||||
|
||||
button.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View view) {
|
||||
if(view.getId() == R.id.button){
|
||||
Intent intent = new Intent(UserActivity.this, MainActivity.class);
|
||||
startActivity(intent);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 组件初始化
|
||||
*/
|
||||
private void init() {
|
||||
userIconImage = findViewById(R.id.user_icon);
|
||||
usernameText = findViewById(R.id.user_username);
|
||||
userSexText = findViewById(R.id.user_sex);
|
||||
userCityText = findViewById(R.id.user_city);
|
||||
usernameLine = findViewById(R.id.user_username_line);
|
||||
userSexline = findViewById(R.id.user_sex_line);
|
||||
userCityLine = findViewById(R.id.user_city_line);
|
||||
userPayLine = findViewById(R.id.user_pay);
|
||||
userSettingLine = findViewById(R.id.user_setting);
|
||||
userGeneralLine = findViewById(R.id.user_general);
|
||||
}
|
||||
|
||||
}
|
@ -1,59 +0,0 @@
|
||||
package com.example.myapplication.entity;
|
||||
|
||||
public class OrangeUser {
|
||||
private Integer id;
|
||||
private String username;
|
||||
private String password;
|
||||
private String sex;
|
||||
private String city;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getUsername() {
|
||||
return username;
|
||||
}
|
||||
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
|
||||
public String getPassword() {
|
||||
return password;
|
||||
}
|
||||
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
public String getSex() {
|
||||
return sex;
|
||||
}
|
||||
|
||||
public void setSex(String sex) {
|
||||
this.sex = sex;
|
||||
}
|
||||
|
||||
public String getCity() {
|
||||
return city;
|
||||
}
|
||||
|
||||
public void setCity(String city) {
|
||||
this.city = city;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "OrangeUser{" +
|
||||
"username='" + username + '\'' +
|
||||
", password='" + password + '\'' +
|
||||
", sex='" + sex + '\'' +
|
||||
", city='" + city + '\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
@ -0,0 +1,37 @@
|
||||
package com.example.register;
|
||||
|
||||
|
||||
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
import android.widget.Button;
|
||||
import android.widget.EditText;
|
||||
import android.util.Log;
|
||||
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
|
||||
public class loginActivity extends AppCompatActivity {
|
||||
Button login, register;
|
||||
EditText username, password;
|
||||
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.login);
|
||||
//对应xml文件中组件的连接
|
||||
login = findViewById(R.id.login);
|
||||
register = findViewById(R.id.register);
|
||||
username = findViewById(R.id.username);
|
||||
password = findViewById(R.id.password);
|
||||
|
||||
login.setOnClickListener(view -> {
|
||||
Intent intent = new Intent();
|
||||
intent.setClass(this, user.class);
|
||||
startActivity(intent);
|
||||
});
|
||||
register.setOnClickListener(view -> {
|
||||
Intent intent = new Intent();
|
||||
intent.setClass(this, registerActivity.class);
|
||||
startActivity(intent);
|
||||
});
|
||||
}
|
||||
}
|
@ -0,0 +1,161 @@
|
||||
package com.example.register;
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
import android.view.View;
|
||||
import android.widget.Button;
|
||||
import android.widget.EditText;
|
||||
import android.graphics.Color;
|
||||
import com.lljjcoder.citypickerview.widget.CityPicker;
|
||||
|
||||
import android.widget.RadioButton;
|
||||
import android.widget.RadioGroup;
|
||||
import android.widget.TextView;
|
||||
import android.widget.Toast;
|
||||
|
||||
|
||||
public class registerActivity extends AppCompatActivity implements View.OnClickListener,RadioGroup.OnCheckedChangeListener {
|
||||
|
||||
private EditText usernameEdit, passwordEdit, surePasswordEdit;
|
||||
private TextView cityText,regButton;
|
||||
private RadioGroup sexGroup;
|
||||
Button register;
|
||||
EditText username, password;
|
||||
private CityPicker cityPicker;
|
||||
private String sexStr="男";
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.register);
|
||||
|
||||
register = findViewById(R.id.register);
|
||||
username = findViewById(R.id.reg_username);
|
||||
password = findViewById(R.id.reg_password);
|
||||
|
||||
register.setOnClickListener(view -> {
|
||||
Intent intent = new Intent();
|
||||
intent.setClass(this, user.class);
|
||||
startActivity(intent);
|
||||
});
|
||||
init();
|
||||
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
界面组件初始化
|
||||
*/
|
||||
private void init() {
|
||||
cityText = findViewById(R.id.reg_province);
|
||||
cityText.setOnClickListener(this);
|
||||
usernameEdit = findViewById(R.id.reg_username);
|
||||
passwordEdit = findViewById(R.id.reg_password);
|
||||
surePasswordEdit = findViewById(R.id.reg_assure);
|
||||
regButton = findViewById(R.id.register);
|
||||
regButton.setOnClickListener(this);
|
||||
sexGroup = findViewById(R.id.sex_radio);
|
||||
sexGroup.setOnCheckedChangeListener(this);
|
||||
/**
|
||||
sexGroup = findViewById(R.id.sex_radio);
|
||||
sexGroup.setOnCheckedChangeListener((radioGroup, i) -> {
|
||||
RadioButton radioButton = findViewById(radioGroup.getCheckedRadioButtonId());
|
||||
|
||||
System.out.println(radioButton.getText().toString());
|
||||
});*/
|
||||
}
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
switch (v.getId()) {
|
||||
case R.id.reg_province:
|
||||
initCityPicker();
|
||||
cityPicker.show();
|
||||
break;
|
||||
case R.id.register:
|
||||
//注册验证方法
|
||||
validateRegister();
|
||||
break;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 初始化城市选择器
|
||||
*/
|
||||
public void initCityPicker() {
|
||||
cityPicker = new CityPicker.Builder(registerActivity.this)
|
||||
.textSize(16)//滚轮文字大小
|
||||
.title("地址选择")
|
||||
.backgroundPop(0xa0000000)
|
||||
.titleBackgroundColor("#EFB81C")
|
||||
.titleTextColor("#000000")
|
||||
.backgroundPop(0xa0000000)
|
||||
.confirTextColor("#000000")
|
||||
.cancelTextColor("#000000")
|
||||
.province("湖南省")
|
||||
.city("常德市")
|
||||
.district("武陵区")
|
||||
.textColor(Color.parseColor("#000000"))
|
||||
.provinceCyclic(true)
|
||||
.cityCyclic(false)
|
||||
.districtCyclic(false)
|
||||
.visibleItemsCount(7)
|
||||
.itemPadding(10)
|
||||
.onlyShowProvinceAndCity(false)
|
||||
.build();
|
||||
cityPicker.setOnCityItemClickListener(new CityPicker.OnCityItemClickListener() {
|
||||
@Override
|
||||
public void onSelected(String... strings) {
|
||||
String province = strings[0];
|
||||
String city = strings[1];
|
||||
String district = strings[2];
|
||||
cityText.setText(String.format("%s %s %s", province, city, district));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onCancel() {
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 注册验证
|
||||
*/
|
||||
public void validateRegister() {
|
||||
Intent intent = new Intent(registerActivity.this, user.class);
|
||||
String username = usernameEdit.getText().toString();
|
||||
String password = passwordEdit.getText().toString();
|
||||
String surePassword = surePasswordEdit.getText().toString();
|
||||
String city = cityText.getText().toString();
|
||||
//判断两次密码是否输入一致
|
||||
if (password.equals(surePassword)) {
|
||||
//这里也可以再进行其它的验证,如是否符合要求等,符合就进行插入数据库操作
|
||||
if (!username.equals("") || !password.equals("")) {
|
||||
if (!city.equals("")) {
|
||||
Bundle bundle = new Bundle();
|
||||
bundle.putString("username", username);
|
||||
bundle.putString("password", password);
|
||||
// bundle.putString("sex", sexStr);
|
||||
bundle.putString("city", city);
|
||||
intent.putExtras(bundle);
|
||||
startActivity(intent);
|
||||
} else {
|
||||
Toast.makeText(registerActivity.this, "请选择地址", Toast.LENGTH_SHORT).show();
|
||||
}
|
||||
} else {
|
||||
Toast.makeText(registerActivity.this, "账号或密码未填写", Toast.LENGTH_SHORT).show();
|
||||
}
|
||||
} else {
|
||||
Toast.makeText(registerActivity.this, "两次密码输入不一致", Toast.LENGTH_SHORT).show();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onCheckedChanged(RadioGroup group, int checkedId) {
|
||||
//根据用户选择来改变sex的值
|
||||
sexStr = checkedId == R.id.sex_radio ? "男" : "女";
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
package com.example.register;
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
import android.os.Bundle;
|
||||
import android.content.Intent;
|
||||
import android.widget.Button;
|
||||
import android.widget.EditText;
|
||||
|
||||
public class user extends AppCompatActivity{
|
||||
EditText username;
|
||||
|
||||
Button exit;
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.user);
|
||||
//username = findViewById(R.id.login_name);
|
||||
exit=findViewById(R.id.exit);
|
||||
exit.setOnClickListener(view -> {
|
||||
Intent intent = new Intent();
|
||||
intent.setClass(this, loginActivity.class);
|
||||
startActivity(intent);
|
||||
});
|
||||
}
|
||||
}
|
||||
/*
|
||||
|
||||
|
||||
setContentView(R.layout.user);
|
||||
//接收结果
|
||||
Intent intent =this.getIntent();
|
||||
String ss1=intent.getStringExtra("username");
|
||||
//String ss2=intent.getStringExtra("password1");
|
||||
|
||||
}
|
||||
}*/
|
@ -0,0 +1,34 @@
|
||||
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*
|
||||
* This class was automatically generated by the
|
||||
* gradle plugin from the resource data it found. It
|
||||
* should not be modified by hand.
|
||||
*/
|
||||
package support.compat;
|
||||
|
||||
public final class R {
|
||||
public static final class attr {
|
||||
public static final int font = 0x7f02006f;
|
||||
public static final int fontProviderAuthority = 0x7f020070;
|
||||
public static final int fontProviderCerts = 0x7f020071;
|
||||
public static final int fontProviderPackage = 0x7f020072;
|
||||
public static final int fontProviderQuery = 0x7f020073;
|
||||
public static final int fontStyle = 0x7f020074;
|
||||
public static final int fontWeight = 0x7f020075;
|
||||
}
|
||||
public static final class id {
|
||||
public static final int italic = 0x7f07003a;
|
||||
public static final int normal = 0x7f070045;
|
||||
}
|
||||
public static final class styleable {
|
||||
public static final int[] FontFamily = { 0x7f020070, 0x7f020071, 0x7f020072, 0x7f020073 };
|
||||
public static final int FontFamily_fontProviderAuthority = 0;
|
||||
public static final int FontFamily_fontProviderCerts = 1;
|
||||
public static final int FontFamily_fontProviderPackage = 2;
|
||||
public static final int FontFamily_fontProviderQuery = 3;
|
||||
public static final int[] FontFamilyFont = { 0x7f02006f, 0x7f020074, 0x7f020075 };
|
||||
public static final int FontFamilyFont_font = 0;
|
||||
public static final int FontFamilyFont_fontStyle = 1;
|
||||
public static final int FontFamilyFont_fontWeight = 2;
|
||||
}
|
||||
}
|
@ -0,0 +1,186 @@
|
||||
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*
|
||||
* This class was automatically generated by the
|
||||
* gradle plugin from the resource data it found. It
|
||||
* should not be modified by hand.
|
||||
*/
|
||||
package support.constraint;
|
||||
|
||||
public final class R {
|
||||
public static final class attr {
|
||||
public static final int constraintSet = 0x7f020054;
|
||||
public static final int layout_constraintBaseline_creator = 0x7f020086;
|
||||
public static final int layout_constraintBaseline_toBaselineOf = 0x7f020087;
|
||||
public static final int layout_constraintBottom_creator = 0x7f020088;
|
||||
public static final int layout_constraintBottom_toBottomOf = 0x7f020089;
|
||||
public static final int layout_constraintBottom_toTopOf = 0x7f02008a;
|
||||
public static final int layout_constraintDimensionRatio = 0x7f02008b;
|
||||
public static final int layout_constraintEnd_toEndOf = 0x7f02008c;
|
||||
public static final int layout_constraintEnd_toStartOf = 0x7f02008d;
|
||||
public static final int layout_constraintGuide_begin = 0x7f02008e;
|
||||
public static final int layout_constraintGuide_end = 0x7f02008f;
|
||||
public static final int layout_constraintGuide_percent = 0x7f020090;
|
||||
public static final int layout_constraintHeight_default = 0x7f020091;
|
||||
public static final int layout_constraintHeight_max = 0x7f020092;
|
||||
public static final int layout_constraintHeight_min = 0x7f020093;
|
||||
public static final int layout_constraintHorizontal_bias = 0x7f020094;
|
||||
public static final int layout_constraintHorizontal_chainStyle = 0x7f020095;
|
||||
public static final int layout_constraintHorizontal_weight = 0x7f020096;
|
||||
public static final int layout_constraintLeft_creator = 0x7f020097;
|
||||
public static final int layout_constraintLeft_toLeftOf = 0x7f020098;
|
||||
public static final int layout_constraintLeft_toRightOf = 0x7f020099;
|
||||
public static final int layout_constraintRight_creator = 0x7f02009a;
|
||||
public static final int layout_constraintRight_toLeftOf = 0x7f02009b;
|
||||
public static final int layout_constraintRight_toRightOf = 0x7f02009c;
|
||||
public static final int layout_constraintStart_toEndOf = 0x7f02009d;
|
||||
public static final int layout_constraintStart_toStartOf = 0x7f02009e;
|
||||
public static final int layout_constraintTop_creator = 0x7f02009f;
|
||||
public static final int layout_constraintTop_toBottomOf = 0x7f0200a0;
|
||||
public static final int layout_constraintTop_toTopOf = 0x7f0200a1;
|
||||
public static final int layout_constraintVertical_bias = 0x7f0200a2;
|
||||
public static final int layout_constraintVertical_chainStyle = 0x7f0200a3;
|
||||
public static final int layout_constraintVertical_weight = 0x7f0200a4;
|
||||
public static final int layout_constraintWidth_default = 0x7f0200a5;
|
||||
public static final int layout_constraintWidth_max = 0x7f0200a6;
|
||||
public static final int layout_constraintWidth_min = 0x7f0200a7;
|
||||
public static final int layout_editor_absoluteX = 0x7f0200a8;
|
||||
public static final int layout_editor_absoluteY = 0x7f0200a9;
|
||||
public static final int layout_goneMarginBottom = 0x7f0200aa;
|
||||
public static final int layout_goneMarginEnd = 0x7f0200ab;
|
||||
public static final int layout_goneMarginLeft = 0x7f0200ac;
|
||||
public static final int layout_goneMarginRight = 0x7f0200ad;
|
||||
public static final int layout_goneMarginStart = 0x7f0200ae;
|
||||
public static final int layout_goneMarginTop = 0x7f0200af;
|
||||
public static final int layout_optimizationLevel = 0x7f0200b0;
|
||||
}
|
||||
public static final class id {
|
||||
public static final int all = 0x7f07001d;
|
||||
public static final int basic = 0x7f07001f;
|
||||
public static final int chains = 0x7f070024;
|
||||
public static final int none = 0x7f070044;
|
||||
public static final int packed = 0x7f070049;
|
||||
public static final int parent = 0x7f07004a;
|
||||
public static final int spread = 0x7f070066;
|
||||
public static final int spread_inside = 0x7f070067;
|
||||
public static final int wrap = 0x7f070080;
|
||||
}
|
||||
public static final class styleable {
|
||||
public static final int[] ConstraintLayout_Layout = { 0x010100c4, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x7f020054, 0x7f020086, 0x7f020087, 0x7f020088, 0x7f020089, 0x7f02008a, 0x7f02008b, 0x7f02008c, 0x7f02008d, 0x7f02008e, 0x7f02008f, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0 };
|
||||
public static final int ConstraintLayout_Layout_android_orientation = 0;
|
||||
public static final int ConstraintLayout_Layout_android_maxWidth = 1;
|
||||
public static final int ConstraintLayout_Layout_android_maxHeight = 2;
|
||||
public static final int ConstraintLayout_Layout_android_minWidth = 3;
|
||||
public static final int ConstraintLayout_Layout_android_minHeight = 4;
|
||||
public static final int ConstraintLayout_Layout_constraintSet = 5;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator = 6;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf = 7;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintBottom_creator = 8;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf = 9;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf = 10;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio = 11;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf = 12;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf = 13;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintGuide_begin = 14;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintGuide_end = 15;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintGuide_percent = 16;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintHeight_default = 17;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintHeight_max = 18;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintHeight_min = 19;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias = 20;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle = 21;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight = 22;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintLeft_creator = 23;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf = 24;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf = 25;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintRight_creator = 26;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf = 27;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf = 28;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf = 29;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf = 30;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintTop_creator = 31;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf = 32;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf = 33;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintVertical_bias = 34;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle = 35;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintVertical_weight = 36;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintWidth_default = 37;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintWidth_max = 38;
|
||||
public static final int ConstraintLayout_Layout_layout_constraintWidth_min = 39;
|
||||
public static final int ConstraintLayout_Layout_layout_editor_absoluteX = 40;
|
||||
public static final int ConstraintLayout_Layout_layout_editor_absoluteY = 41;
|
||||
public static final int ConstraintLayout_Layout_layout_goneMarginBottom = 42;
|
||||
public static final int ConstraintLayout_Layout_layout_goneMarginEnd = 43;
|
||||
public static final int ConstraintLayout_Layout_layout_goneMarginLeft = 44;
|
||||
public static final int ConstraintLayout_Layout_layout_goneMarginRight = 45;
|
||||
public static final int ConstraintLayout_Layout_layout_goneMarginStart = 46;
|
||||
public static final int ConstraintLayout_Layout_layout_goneMarginTop = 47;
|
||||
public static final int ConstraintLayout_Layout_layout_optimizationLevel = 48;
|
||||
public static final int[] ConstraintSet = { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f020086, 0x7f020087, 0x7f020088, 0x7f020089, 0x7f02008a, 0x7f02008b, 0x7f02008c, 0x7f02008d, 0x7f02008e, 0x7f02008f, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af };
|
||||
public static final int ConstraintSet_android_orientation = 0;
|
||||
public static final int ConstraintSet_android_id = 1;
|
||||
public static final int ConstraintSet_android_visibility = 2;
|
||||
public static final int ConstraintSet_android_layout_width = 3;
|
||||
public static final int ConstraintSet_android_layout_height = 4;
|
||||
public static final int ConstraintSet_android_layout_marginLeft = 5;
|
||||
public static final int ConstraintSet_android_layout_marginTop = 6;
|
||||
public static final int ConstraintSet_android_layout_marginRight = 7;
|
||||
public static final int ConstraintSet_android_layout_marginBottom = 8;
|
||||
public static final int ConstraintSet_android_alpha = 9;
|
||||
public static final int ConstraintSet_android_transformPivotX = 10;
|
||||
public static final int ConstraintSet_android_transformPivotY = 11;
|
||||
public static final int ConstraintSet_android_translationX = 12;
|
||||
public static final int ConstraintSet_android_translationY = 13;
|
||||
public static final int ConstraintSet_android_scaleX = 14;
|
||||
public static final int ConstraintSet_android_scaleY = 15;
|
||||
public static final int ConstraintSet_android_rotationX = 16;
|
||||
public static final int ConstraintSet_android_rotationY = 17;
|
||||
public static final int ConstraintSet_android_layout_marginStart = 18;
|
||||
public static final int ConstraintSet_android_layout_marginEnd = 19;
|
||||
public static final int ConstraintSet_android_translationZ = 20;
|
||||
public static final int ConstraintSet_android_elevation = 21;
|
||||
public static final int ConstraintSet_layout_constraintBaseline_creator = 22;
|
||||
public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf = 23;
|
||||
public static final int ConstraintSet_layout_constraintBottom_creator = 24;
|
||||
public static final int ConstraintSet_layout_constraintBottom_toBottomOf = 25;
|
||||
public static final int ConstraintSet_layout_constraintBottom_toTopOf = 26;
|
||||
public static final int ConstraintSet_layout_constraintDimensionRatio = 27;
|
||||
public static final int ConstraintSet_layout_constraintEnd_toEndOf = 28;
|
||||
public static final int ConstraintSet_layout_constraintEnd_toStartOf = 29;
|
||||
public static final int ConstraintSet_layout_constraintGuide_begin = 30;
|
||||
public static final int ConstraintSet_layout_constraintGuide_end = 31;
|
||||
public static final int ConstraintSet_layout_constraintGuide_percent = 32;
|
||||
public static final int ConstraintSet_layout_constraintHeight_default = 33;
|
||||
public static final int ConstraintSet_layout_constraintHeight_max = 34;
|
||||
public static final int ConstraintSet_layout_constraintHeight_min = 35;
|
||||
public static final int ConstraintSet_layout_constraintHorizontal_bias = 36;
|
||||
public static final int ConstraintSet_layout_constraintHorizontal_chainStyle = 37;
|
||||
public static final int ConstraintSet_layout_constraintHorizontal_weight = 38;
|
||||
public static final int ConstraintSet_layout_constraintLeft_creator = 39;
|
||||
public static final int ConstraintSet_layout_constraintLeft_toLeftOf = 40;
|
||||
public static final int ConstraintSet_layout_constraintLeft_toRightOf = 41;
|
||||
public static final int ConstraintSet_layout_constraintRight_creator = 42;
|
||||
public static final int ConstraintSet_layout_constraintRight_toLeftOf = 43;
|
||||
public static final int ConstraintSet_layout_constraintRight_toRightOf = 44;
|
||||
public static final int ConstraintSet_layout_constraintStart_toEndOf = 45;
|
||||
public static final int ConstraintSet_layout_constraintStart_toStartOf = 46;
|
||||
public static final int ConstraintSet_layout_constraintTop_creator = 47;
|
||||
public static final int ConstraintSet_layout_constraintTop_toBottomOf = 48;
|
||||
public static final int ConstraintSet_layout_constraintTop_toTopOf = 49;
|
||||
public static final int ConstraintSet_layout_constraintVertical_bias = 50;
|
||||
public static final int ConstraintSet_layout_constraintVertical_chainStyle = 51;
|
||||
public static final int ConstraintSet_layout_constraintVertical_weight = 52;
|
||||
public static final int ConstraintSet_layout_constraintWidth_default = 53;
|
||||
public static final int ConstraintSet_layout_constraintWidth_max = 54;
|
||||
public static final int ConstraintSet_layout_constraintWidth_min = 55;
|
||||
public static final int ConstraintSet_layout_editor_absoluteX = 56;
|
||||
public static final int ConstraintSet_layout_editor_absoluteY = 57;
|
||||
public static final int ConstraintSet_layout_goneMarginBottom = 58;
|
||||
public static final int ConstraintSet_layout_goneMarginEnd = 59;
|
||||
public static final int ConstraintSet_layout_goneMarginLeft = 60;
|
||||
public static final int ConstraintSet_layout_goneMarginRight = 61;
|
||||
public static final int ConstraintSet_layout_goneMarginStart = 62;
|
||||
public static final int ConstraintSet_layout_goneMarginTop = 63;
|
||||
public static final int[] LinearConstraintLayout = { 0x010100c4 };
|
||||
public static final int LinearConstraintLayout_android_orientation = 0;
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*
|
||||
* This class was automatically generated by the
|
||||
* gradle plugin from the resource data it found. It
|
||||
* should not be modified by hand.
|
||||
*/
|
||||
package support.coreui;
|
||||
|
||||
public final class R {
|
||||
public static final class attr {
|
||||
public static final int font = 0x7f02006f;
|
||||
public static final int fontProviderAuthority = 0x7f020070;
|
||||
public static final int fontProviderCerts = 0x7f020071;
|
||||
public static final int fontProviderPackage = 0x7f020072;
|
||||
public static final int fontProviderQuery = 0x7f020073;
|
||||
public static final int fontStyle = 0x7f020074;
|
||||
public static final int fontWeight = 0x7f020075;
|
||||
}
|
||||
public static final class id {
|
||||
public static final int italic = 0x7f07003a;
|
||||
public static final int normal = 0x7f070045;
|
||||
}
|
||||
public static final class styleable {
|
||||
public static final int[] FontFamily = { 0x7f020070, 0x7f020071, 0x7f020072, 0x7f020073 };
|
||||
public static final int FontFamily_fontProviderAuthority = 0;
|
||||
public static final int FontFamily_fontProviderCerts = 1;
|
||||
public static final int FontFamily_fontProviderPackage = 2;
|
||||
public static final int FontFamily_fontProviderQuery = 3;
|
||||
public static final int[] FontFamilyFont = { 0x7f02006f, 0x7f020074, 0x7f020075 };
|
||||
public static final int FontFamilyFont_font = 0;
|
||||
public static final int FontFamilyFont_fontStyle = 1;
|
||||
public static final int FontFamilyFont_fontWeight = 2;
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*
|
||||
* This class was automatically generated by the
|
||||
* gradle plugin from the resource data it found. It
|
||||
* should not be modified by hand.
|
||||
*/
|
||||
package support.coreutils;
|
||||
|
||||
public final class R {
|
||||
public static final class attr {
|
||||
public static final int font = 0x7f02006f;
|
||||
public static final int fontProviderAuthority = 0x7f020070;
|
||||
public static final int fontProviderCerts = 0x7f020071;
|
||||
public static final int fontProviderPackage = 0x7f020072;
|
||||
public static final int fontProviderQuery = 0x7f020073;
|
||||
public static final int fontStyle = 0x7f020074;
|
||||
public static final int fontWeight = 0x7f020075;
|
||||
}
|
||||
public static final class id {
|
||||
public static final int italic = 0x7f07003a;
|
||||
public static final int normal = 0x7f070045;
|
||||
}
|
||||
public static final class styleable {
|
||||
public static final int[] FontFamily = { 0x7f020070, 0x7f020071, 0x7f020072, 0x7f020073 };
|
||||
public static final int FontFamily_fontProviderAuthority = 0;
|
||||
public static final int FontFamily_fontProviderCerts = 1;
|
||||
public static final int FontFamily_fontProviderPackage = 2;
|
||||
public static final int FontFamily_fontProviderQuery = 3;
|
||||
public static final int[] FontFamilyFont = { 0x7f02006f, 0x7f020074, 0x7f020075 };
|
||||
public static final int FontFamilyFont_font = 0;
|
||||
public static final int FontFamilyFont_fontStyle = 1;
|
||||
public static final int FontFamilyFont_fontWeight = 2;
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*
|
||||
* This class was automatically generated by the
|
||||
* gradle plugin from the resource data it found. It
|
||||
* should not be modified by hand.
|
||||
*/
|
||||
package support.fragment;
|
||||
|
||||
public final class R {
|
||||
public static final class attr {
|
||||
public static final int font = 0x7f02006f;
|
||||
public static final int fontProviderAuthority = 0x7f020070;
|
||||
public static final int fontProviderCerts = 0x7f020071;
|
||||
public static final int fontProviderPackage = 0x7f020072;
|
||||
public static final int fontProviderQuery = 0x7f020073;
|
||||
public static final int fontStyle = 0x7f020074;
|
||||
public static final int fontWeight = 0x7f020075;
|
||||
}
|
||||
public static final class id {
|
||||
public static final int italic = 0x7f07003a;
|
||||
public static final int normal = 0x7f070045;
|
||||
}
|
||||
public static final class styleable {
|
||||
public static final int[] FontFamily = { 0x7f020070, 0x7f020071, 0x7f020072, 0x7f020073 };
|
||||
public static final int FontFamily_fontProviderAuthority = 0;
|
||||
public static final int FontFamily_fontProviderCerts = 1;
|
||||
public static final int FontFamily_fontProviderPackage = 2;
|
||||
public static final int FontFamily_fontProviderQuery = 3;
|
||||
public static final int[] FontFamilyFont = { 0x7f02006f, 0x7f020074, 0x7f020075 };
|
||||
public static final int FontFamilyFont_font = 0;
|
||||
public static final int FontFamilyFont_fontStyle = 1;
|
||||
public static final int FontFamilyFont_fontWeight = 2;
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*
|
||||
* This class was automatically generated by the
|
||||
* gradle plugin from the resource data it found. It
|
||||
* should not be modified by hand.
|
||||
*/
|
||||
package support.graphics.drawable;
|
||||
|
||||
public final class R {
|
||||
public static final class attr {
|
||||
public static final int font = 0x7f02006f;
|
||||
public static final int fontProviderAuthority = 0x7f020070;
|
||||
public static final int fontProviderCerts = 0x7f020071;
|
||||
public static final int fontProviderPackage = 0x7f020072;
|
||||
public static final int fontProviderQuery = 0x7f020073;
|
||||
public static final int fontStyle = 0x7f020074;
|
||||
public static final int fontWeight = 0x7f020075;
|
||||
}
|
||||
public static final class id {
|
||||
public static final int italic = 0x7f07003a;
|
||||
public static final int normal = 0x7f070045;
|
||||
}
|
||||
public static final class styleable {
|
||||
public static final int[] FontFamily = { 0x7f020070, 0x7f020071, 0x7f020072, 0x7f020073 };
|
||||
public static final int FontFamily_fontProviderAuthority = 0;
|
||||
public static final int FontFamily_fontProviderCerts = 1;
|
||||
public static final int FontFamily_fontProviderPackage = 2;
|
||||
public static final int FontFamily_fontProviderQuery = 3;
|
||||
public static final int[] FontFamilyFont = { 0x7f02006f, 0x7f020074, 0x7f020075 };
|
||||
public static final int FontFamilyFont_font = 0;
|
||||
public static final int FontFamilyFont_fontStyle = 1;
|
||||
public static final int FontFamilyFont_fontWeight = 2;
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*
|
||||
* This class was automatically generated by the
|
||||
* gradle plugin from the resource data it found. It
|
||||
* should not be modified by hand.
|
||||
*/
|
||||
package support.graphics.drawable.animated;
|
||||
|
||||
public final class R {
|
||||
public static final class attr {
|
||||
public static final int font = 0x7f02006f;
|
||||
public static final int fontProviderAuthority = 0x7f020070;
|
||||
public static final int fontProviderCerts = 0x7f020071;
|
||||
public static final int fontProviderPackage = 0x7f020072;
|
||||
public static final int fontProviderQuery = 0x7f020073;
|
||||
public static final int fontStyle = 0x7f020074;
|
||||
public static final int fontWeight = 0x7f020075;
|
||||
}
|
||||
public static final class id {
|
||||
public static final int italic = 0x7f07003a;
|
||||
public static final int normal = 0x7f070045;
|
||||
}
|
||||
public static final class styleable {
|
||||
public static final int[] FontFamily = { 0x7f020070, 0x7f020071, 0x7f020072, 0x7f020073 };
|
||||
public static final int FontFamily_fontProviderAuthority = 0;
|
||||
public static final int FontFamily_fontProviderCerts = 1;
|
||||
public static final int FontFamily_fontProviderPackage = 2;
|
||||
public static final int FontFamily_fontProviderQuery = 3;
|
||||
public static final int[] FontFamilyFont = { 0x7f02006f, 0x7f020074, 0x7f020075 };
|
||||
public static final int FontFamilyFont_font = 0;
|
||||
public static final int FontFamilyFont_fontStyle = 1;
|
||||
public static final int FontFamilyFont_fontWeight = 2;
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*
|
||||
* This class was automatically generated by the
|
||||
* gradle plugin from the resource data it found. It
|
||||
* should not be modified by hand.
|
||||
*/
|
||||
package support.mediacompat;
|
||||
|
||||
public final class R {
|
||||
public static final class attr {
|
||||
public static final int font = 0x7f02006f;
|
||||
public static final int fontProviderAuthority = 0x7f020070;
|
||||
public static final int fontProviderCerts = 0x7f020071;
|
||||
public static final int fontProviderPackage = 0x7f020072;
|
||||
public static final int fontProviderQuery = 0x7f020073;
|
||||
public static final int fontStyle = 0x7f020074;
|
||||
public static final int fontWeight = 0x7f020075;
|
||||
}
|
||||
public static final class id {
|
||||
public static final int italic = 0x7f07003a;
|
||||
public static final int normal = 0x7f070045;
|
||||
}
|
||||
public static final class styleable {
|
||||
public static final int[] FontFamily = { 0x7f020070, 0x7f020071, 0x7f020072, 0x7f020073 };
|
||||
public static final int FontFamily_fontProviderAuthority = 0;
|
||||
public static final int FontFamily_fontProviderCerts = 1;
|
||||
public static final int FontFamily_fontProviderPackage = 2;
|
||||
public static final int FontFamily_fontProviderQuery = 3;
|
||||
public static final int[] FontFamilyFont = { 0x7f02006f, 0x7f020074, 0x7f020075 };
|
||||
public static final int FontFamilyFont_font = 0;
|
||||
public static final int FontFamilyFont_fontStyle = 1;
|
||||
public static final int FontFamilyFont_fontWeight = 2;
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*
|
||||
* This class was automatically generated by the
|
||||
* gradle plugin from the resource data it found. It
|
||||
* should not be modified by hand.
|
||||
*/
|
||||
package support.v4;
|
||||
|
||||
public final class R {
|
||||
public static final class attr {
|
||||
public static final int font = 0x7f02006f;
|
||||
public static final int fontProviderAuthority = 0x7f020070;
|
||||
public static final int fontProviderCerts = 0x7f020071;
|
||||
public static final int fontProviderPackage = 0x7f020072;
|
||||
public static final int fontProviderQuery = 0x7f020073;
|
||||
public static final int fontStyle = 0x7f020074;
|
||||
public static final int fontWeight = 0x7f020075;
|
||||
}
|
||||
public static final class id {
|
||||
public static final int italic = 0x7f07003a;
|
||||
public static final int normal = 0x7f070045;
|
||||
}
|
||||
public static final class styleable {
|
||||
public static final int[] FontFamily = { 0x7f020070, 0x7f020071, 0x7f020072, 0x7f020073 };
|
||||
public static final int FontFamily_fontProviderAuthority = 0;
|
||||
public static final int FontFamily_fontProviderCerts = 1;
|
||||
public static final int FontFamily_fontProviderPackage = 2;
|
||||
public static final int FontFamily_fontProviderQuery = 3;
|
||||
public static final int[] FontFamilyFont = { 0x7f02006f, 0x7f020074, 0x7f020075 };
|
||||
public static final int FontFamilyFont_font = 0;
|
||||
public static final int FontFamilyFont_fontStyle = 1;
|
||||
public static final int FontFamilyFont_fontWeight = 2;
|
||||
}
|
||||
}
|
@ -1,22 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.example.myapplication">
|
||||
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:roundIcon="@mipmap/ic_launcher_round"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/AppTheme">
|
||||
<activity android:name=".MainActivity">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name=".activity.RegisterActivity"></activity>
|
||||
<activity android:name=".activity.UserActivity" />
|
||||
</application>
|
||||
|
||||
</manifest>
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 233 B |
Before Width: | Height: | Size: 3.3 KiB |
@ -1,30 +0,0 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:aapt="http://schemas.android.com/aapt"
|
||||
android:width="108dp"
|
||||
android:height="108dp"
|
||||
android:viewportWidth="108"
|
||||
android:viewportHeight="108">
|
||||
<path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient
|
||||
android:endX="85.84757"
|
||||
android:endY="92.4963"
|
||||
android:startX="42.9492"
|
||||
android:startY="49.59793"
|
||||
android:type="linear">
|
||||
<item
|
||||
android:color="#44000000"
|
||||
android:offset="0.0" />
|
||||
<item
|
||||
android:color="#00000000"
|
||||
android:offset="1.0" />
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path
|
||||
android:fillColor="#FFFFFF"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z"
|
||||
android:strokeWidth="1"
|
||||
android:strokeColor="#00000000" />
|
||||
</vector>
|
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 233 B |
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_pressed="false">
|
||||
<shape>
|
||||
<solid android:color="#EFB81C" />
|
||||
<corners android:radius="5dp" />
|
||||
</shape>
|
||||
</item>
|
||||
<item android:state_pressed="true">
|
||||
<shape>
|
||||
<solid android:color="#c0c0c0" />
|
||||
<corners android:radius="5dp" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_pressed="false">
|
||||
<shape>
|
||||
<solid android:color="#c0c0c0" />
|
||||
</shape>
|
||||
</item>
|
||||
<item android:state_pressed="true">
|
||||
<shape>
|
||||
<solid android:color="#c0c0c0" />
|
||||
<corners android:radius="10dp" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
Before Width: | Height: | Size: 790 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 368 B |
Before Width: | Height: | Size: 233 B |
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_pressed="false">
|
||||
<shape>
|
||||
<solid android:color="#EFB81C" />
|
||||
<corners android:radius="5dp" />
|
||||
</shape>
|
||||
</item>
|
||||
<item android:state_pressed="true">
|
||||
<shape>
|
||||
<solid android:color="#c0c0c0" />
|
||||
<corners android:radius="5dp" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_pressed="false">
|
||||
<shape>
|
||||
<solid android:color="#c0c0c0" />
|
||||
</shape>
|
||||
</item>
|
||||
<item android:state_pressed="true">
|
||||
<shape>
|
||||
<solid android:color="#c0c0c0" />
|
||||
<corners android:radius="10dp" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
Before Width: | Height: | Size: 790 B |
@ -1,170 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="108dp"
|
||||
android:height="108dp"
|
||||
android:viewportWidth="108"
|
||||
android:viewportHeight="108">
|
||||
<path
|
||||
android:fillColor="#008577"
|
||||
android:pathData="M0,0h108v108h-108z" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M9,0L9,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,0L19,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M29,0L29,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M39,0L39,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M49,0L49,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M59,0L59,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M69,0L69,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M79,0L79,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M89,0L89,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M99,0L99,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,9L108,9"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,19L108,19"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,29L108,29"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,39L108,39"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,49L108,49"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,59L108,59"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,69L108,69"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,79L108,79"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,89L108,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,99L108,99"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,29L89,29"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,39L89,39"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,49L89,49"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,59L89,59"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,69L89,69"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,79L89,79"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M29,19L29,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M39,19L39,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M49,19L49,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M59,19L59,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M69,19L69,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M79,19L79,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
</vector>
|
Before Width: | Height: | Size: 6.0 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.5 KiB |
@ -1,16 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item>
|
||||
<shape>
|
||||
<solid android:color="#FFFFFF"/>
|
||||
<corners android:radius="2dip"/>
|
||||
<stroke
|
||||
android:width="1dp"
|
||||
android:color="#FFFFFF"
|
||||
/>
|
||||
</shape>
|
||||
</item>
|
||||
<item>
|
||||
<bitmap android:src="@drawable/arrow_down" android:gravity="end"/>
|
||||
</item>
|
||||
</layer-list>
|
Before Width: | Height: | Size: 799 B |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 402 B |
Before Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 554 B |
Before Width: | Height: | Size: 1.1 KiB |
@ -1,170 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="108dp"
|
||||
android:height="108dp"
|
||||
android:viewportWidth="108"
|
||||
android:viewportHeight="108">
|
||||
<path
|
||||
android:fillColor="#008577"
|
||||
android:pathData="M0,0h108v108h-108z" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M9,0L9,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,0L19,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M29,0L29,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M39,0L39,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M49,0L49,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M59,0L59,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M69,0L69,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M79,0L79,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M89,0L89,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M99,0L99,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,9L108,9"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,19L108,19"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,29L108,29"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,39L108,39"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,49L108,49"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,59L108,59"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,69L108,69"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,79L108,79"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,89L108,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,99L108,99"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,29L89,29"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,39L89,39"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,49L89,49"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,59L89,59"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,69L89,69"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,79L89,79"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M29,19L29,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M39,19L39,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M49,19L49,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M59,19L59,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M69,19L69,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M79,19L79,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
</vector>
|
Before Width: | Height: | Size: 6.0 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.5 KiB |
@ -1,16 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item>
|
||||
<shape>
|
||||
<solid android:color="#FFFFFF"/>
|
||||
<corners android:radius="2dip"/>
|
||||
<stroke
|
||||
android:width="1dp"
|
||||
android:color="#FFFFFF"
|
||||
/>
|
||||
</shape>
|
||||
</item>
|
||||
<item>
|
||||
<bitmap android:src="@drawable/arrow_down" android:gravity="end"/>
|
||||
</item>
|
||||
</layer-list>
|
Before Width: | Height: | Size: 799 B |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 402 B |
Before Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 554 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 368 B After Width: | Height: | Size: 368 B |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 174 KiB |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
After Width: | Height: | Size: 881 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 2.1 KiB |
@ -1,16 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item>
|
||||
<shape>
|
||||
<solid android:color="#FFFFFF"/>
|
||||
<corners android:radius="2dip"/>
|
||||
<stroke
|
||||
android:width="1dp"
|
||||
android:color="#FFFFFF"
|
||||
/>
|
||||
</shape>
|
||||
</item>
|
||||
<item>
|
||||
<bitmap android:src="@drawable/arrow_down" android:gravity="end"/>
|
||||
</item>
|
||||
</layer-list>
|
Before Width: | Height: | Size: 799 B |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 6.9 KiB |
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 402 B |
Before Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 325 B |
@ -1,91 +0,0 @@
|
||||
|
||||
package com.example.myapplication.activity;
|
||||
|
||||
import android.graphics.Color;
|
||||
import android.os.Bundle;
|
||||
import android.view.View;
|
||||
import android.widget.TextView;
|
||||
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
|
||||
import com.example.myapplication.R;
|
||||
|
||||
public class RegisterActivity extends AppCompatActivity implements View.OnClickListener {
|
||||
private TextView cityText;
|
||||
private CityPickerView cityPicker;
|
||||
|
||||
|
||||
@Override
|
||||
protected void onCreate(@Nullable Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.user_register);
|
||||
init();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
private void init() {
|
||||
cityText = findViewById(R.id.reg_province);
|
||||
cityText.setOnClickListener(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
switch (v.getId()) {
|
||||
case R.id.reg_province:
|
||||
initCityPicker();
|
||||
cityPicker.show();
|
||||
break;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void initCityPicker() {
|
||||
cityPicker = new CityPicker.Builder(RegisterActivity.this)
|
||||
.textSize(16)
|
||||
.title("地址选择")
|
||||
.backgroundPop(0xa0000000)
|
||||
.titleBackgroundColor("#EFB81C")
|
||||
.titleTextColor("#000000")
|
||||
.backgroundPop(0xa0000000)
|
||||
.confirTextColor("#000000")
|
||||
.cancelTextColor("#000000")
|
||||
.province("xx省")
|
||||
.city("xx市")
|
||||
.district("xx区")
|
||||
.textColor(Color.parseColor("#000000"))
|
||||
.provinceCyclic(true)
|
||||
.cityCyclic(false)
|
||||
.districtCyclic(false)
|
||||
.visibleItemsCount(7)
|
||||
.itemPadding(10)
|
||||
.onlyShowProvinceAndCity(false)
|
||||
.build();
|
||||
cityPicker.setOnCityItemClickListener(new CityPicker.OnCityItemClickListener() {
|
||||
@Override
|
||||
public void onSelected(String... strings) {
|
||||
String province=strings[0];
|
||||
String city=strings[1];
|
||||
String district=strings[2];
|
||||
cityText.setText(String.format("%s %s %s", province, city, district));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onCancel() {
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1,53 +0,0 @@
|
||||
package com.example.myapplication.activity;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.TextView;
|
||||
|
||||
import androidx.annotation.Nullable;
|
||||
|
||||
import com.example.myapplication.R;
|
||||
|
||||
public class UserActivity extends Activity {
|
||||
private ImageView userIconImage;
|
||||
private TextView usernameText, userSexText, userCityText;
|
||||
private LinearLayout usernameLine, userSexline, userCityLine, userPayLine, userSettingLine, userGeneralLine;
|
||||
|
||||
@Override
|
||||
protected void onCreate(@Nullable Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.content_user);
|
||||
init();
|
||||
}
|
||||
|
||||
/**
|
||||
* 组件初始化
|
||||
*/
|
||||
private void init() {
|
||||
userIconImage = findViewById(R.id.user_icon);
|
||||
usernameText = findViewById(R.id.user_username);
|
||||
userSexText = findViewById(R.id.user_sex);
|
||||
userCityText = findViewById(R.id.user_city);
|
||||
usernameLine = findViewById(R.id.user_username_line);
|
||||
userSexline = findViewById(R.id.user_sex_line);
|
||||
userCityLine = findViewById(R.id.user_city_line);
|
||||
userPayLine = findViewById(R.id.user_pay);
|
||||
userSettingLine = findViewById(R.id.user_setting);
|
||||
userGeneralLine = findViewById(R.id.user_general);
|
||||
setData();
|
||||
}
|
||||
|
||||
/**
|
||||
* 组件赋值
|
||||
*/
|
||||
private void setData() {
|
||||
Intent intent = UserActivity.this.getIntent();
|
||||
Bundle bundle = intent.getExtras();
|
||||
usernameText.setText(String.format("用户名:%s", bundle.getString("username")));
|
||||
userSexText.setText(String.format("性别:%s", bundle.getString("sex")));
|
||||
userCityText.setText(String.format("城市:%s", bundle.getString("city")));
|
||||
}
|
||||
}
|
@ -1,19 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context=".MainActivity">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/textView"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Hello World!"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
@ -1,205 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="#E8E8E8"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/user_icon"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="20dp"
|
||||
android:src="@drawable/user_icon" />
|
||||
|
||||
<!--卡券-->
|
||||
<LinearLayout
|
||||
android:id="@+id/user_pay"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="40dp"
|
||||
android:background="#FFF"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="35dp"
|
||||
android:layout_marginLeft="5dp"
|
||||
android:layout_weight="1"
|
||||
android:drawableLeft="@drawable/user_pay"
|
||||
android:drawablePadding="8dp"
|
||||
android:gravity="center_vertical"
|
||||
android:text="朋友圈"
|
||||
android:textColor="#000"
|
||||
android:textSize="14sp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:layout_gravity="center"
|
||||
android:src="@drawable/arrow_right" />
|
||||
</LinearLayout>
|
||||
|
||||
<!--账号-->
|
||||
<LinearLayout
|
||||
android:id="@+id/user_username_line"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="30dp"
|
||||
android:background="#FFF">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/user_username"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginLeft="5dp"
|
||||
android:layout_weight="1"
|
||||
android:drawableLeft="@drawable/user_account"
|
||||
android:drawablePadding="8dp"
|
||||
android:gravity="center_vertical"
|
||||
android:text="摇一摇"
|
||||
android:textColor="#000"
|
||||
android:textSize="14sp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:layout_gravity="center"
|
||||
android:src="@drawable/arrow_right" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<!--性别-->
|
||||
<LinearLayout
|
||||
android:id="@+id/user_sex_line"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:background="#FFF"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/user_sex"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="35dp"
|
||||
android:layout_marginLeft="5dp"
|
||||
android:layout_weight="1"
|
||||
android:drawableLeft="@drawable/user_sex"
|
||||
android:drawablePadding="8dp"
|
||||
android:gravity="center_vertical"
|
||||
android:text="视频号"
|
||||
android:textColor="#000"
|
||||
android:textSize="14sp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:layout_gravity="center"
|
||||
android:src="@drawable/arrow_right" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<!--城市-->
|
||||
<LinearLayout
|
||||
android:id="@+id/user_city_line"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:background="#FFF"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/user_city"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="35dp"
|
||||
android:layout_marginLeft="5dp"
|
||||
android:layout_weight="1"
|
||||
android:drawableLeft="@drawable/city"
|
||||
android:drawablePadding="8dp"
|
||||
android:gravity="center_vertical"
|
||||
android:text="漂流瓶"
|
||||
android:textColor="#000"
|
||||
android:textSize="14sp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:layout_gravity="center"
|
||||
android:src="@drawable/arrow_right" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<!--通用-->
|
||||
<LinearLayout
|
||||
android:id="@+id/user_general"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="20dp"
|
||||
android:background="#FFF"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="35dp"
|
||||
android:layout_marginLeft="5dp"
|
||||
android:layout_weight="1"
|
||||
android:drawableLeft="@drawable/user_general"
|
||||
android:drawablePadding="8dp"
|
||||
android:gravity="center_vertical"
|
||||
android:text="通用"
|
||||
android:textColor="#000"
|
||||
android:textSize="14sp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:layout_gravity="center"
|
||||
android:src="@drawable/arrow_right" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<!--设置-->
|
||||
<LinearLayout
|
||||
android:id="@+id/user_setting"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="20dp"
|
||||
android:background="#FFF"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="35dp"
|
||||
android:layout_marginLeft="5dp"
|
||||
android:layout_weight="1"
|
||||
android:drawableLeft="@drawable/setting"
|
||||
android:drawablePadding="8dp"
|
||||
android:gravity="center_vertical"
|
||||
android:text="设置"
|
||||
android:textColor="#000"
|
||||
android:textSize="14sp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:layout_gravity="center"
|
||||
android:src="@drawable/arrow_right" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<Button
|
||||
android:id="@+id/button"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="40dp"
|
||||
android:layout_gravity="center"
|
||||
android:layout_marginLeft="10dp"
|
||||
android:layout_marginTop="150dp"
|
||||
android:layout_marginRight="10dp"
|
||||
android:background="@drawable/button_login"
|
||||
android:text="退出登录"
|
||||
android:textColor="#FFFFFF"
|
||||
android:textSize="18sp" />
|
||||
|
||||
|
||||
</LinearLayout>
|
@ -0,0 +1,178 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
android:background="#7795B3">
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="20dp"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:src="@drawable/htt"></ImageView>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:layout_marginTop="40dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="50dp"
|
||||
android:layout_height="50dp"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:src="@drawable/user" />
|
||||
|
||||
<EditText
|
||||
android:id="@+id/login_name"
|
||||
android:layout_width="310dp"
|
||||
android:layout_height="60dp"
|
||||
android:textSize="25sp"
|
||||
android:hint="username"
|
||||
android:maxLength="16"
|
||||
android:maxLines="1"
|
||||
android:text=" 服务"
|
||||
|
||||
/>
|
||||
<!-- android:text="服务作为第一按钮"-->
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:layout_marginTop="20dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="45dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:src="@drawable/sex" />
|
||||
|
||||
<EditText
|
||||
android:layout_width="310dp"
|
||||
android:layout_height="60dp"
|
||||
android:textSize="25sp"
|
||||
android:hint="username"
|
||||
android:maxLength="4"
|
||||
android:maxLines="1"
|
||||
android:text=" 收藏"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:layout_marginTop="20dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="50dp"
|
||||
android:layout_height="50dp"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:src="@drawable/address"/>
|
||||
|
||||
<EditText
|
||||
android:layout_width="310dp"
|
||||
android:layout_height="60dp"
|
||||
android:textSize="25sp"
|
||||
android:hint="address"
|
||||
android:maxLength="25"
|
||||
android:maxLines="1"
|
||||
android:text=" 朋友圈" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:layout_marginTop="20dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="50dp"
|
||||
android:layout_height="50dp"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:src="@drawable/red" />
|
||||
|
||||
<EditText
|
||||
android:layout_width="310dp"
|
||||
android:layout_height="60dp"
|
||||
android:textSize="25sp"
|
||||
android:hint="money"
|
||||
android:maxLength="10"
|
||||
android:maxLines="1"
|
||||
android:text=" 卡包" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="20dp"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="50dp"
|
||||
android:layout_height="50dp"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:src="@drawable/emoji"/>
|
||||
|
||||
<EditText
|
||||
android:layout_width="310dp"
|
||||
android:layout_height="60dp"
|
||||
android:textSize="25sp"
|
||||
android:hint="search"
|
||||
android:maxLines="1"
|
||||
android:text=" 表情"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:layout_marginTop="20dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="50dp"
|
||||
android:layout_height="50dp"
|
||||
android:layout_gravity="center_horizontal" />
|
||||
|
||||
<EditText
|
||||
android:layout_width="310dp"
|
||||
android:layout_height="60dp"
|
||||
android:textSize="25sp"
|
||||
android:hint="set"
|
||||
android:maxLines="1"
|
||||
android:text="设置" />
|
||||
|
||||
</LinearLayout>
|
||||
<Button
|
||||
android:id="@+id/exit"
|
||||
android:layout_width="220dp"
|
||||
android:layout_height="50dp"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="20dp"
|
||||
android:text="退 出 登 录"
|
||||
android:textColor="#FFFFFF"
|
||||
android:textSize="22sp">
|
||||
|
||||
</Button>
|
||||
|
||||
</LinearLayout>
|
@ -1,3 +1,3 @@
|
||||
<resources>
|
||||
<string name="app_name">登录注册界面</string>
|
||||
<string name="app_name">register</string>
|
||||
</resources>
|
@ -1,11 +0,0 @@
|
||||
<resources>
|
||||
|
||||
<!-- Base application theme. -->
|
||||
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
|
||||
<!-- Customize your theme here. -->
|
||||
<item name="colorPrimary">@color/colorPrimary</item>
|
||||
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
||||
<item name="colorAccent">@color/colorAccent</item>
|
||||
</style>
|
||||
|
||||
</resources>
|
@ -1,16 +1,16 @@
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Base application theme. -->
|
||||
<style name="Theme.MyApplication" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
|
||||
<style name="Theme.Register" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
|
||||
<!-- Primary brand color. -->
|
||||
<item name="colorPrimary">@color/purple_500</item>
|
||||
<item name="colorPrimaryVariant">@color/purple_700</item>
|
||||
<item name="colorOnPrimary">@color/white</item>
|
||||
<!-- Secondary brand color. -->
|
||||
<item name="colorSecondary">@color/teal_200</item>
|
||||
<item name="colorSecondaryVariant">@color/teal_700</item>
|
||||
<item name="colorOnSecondary">@color/black</item>
|
||||
<!-- Status bar color. -->
|
||||
<item name="android:statusBarColor">?attr/colorPrimaryVariant</item>
|
||||
<!-- <item name="colorPrimary">@color/purple_500</item>-->
|
||||
<!-- <item name="colorPrimaryVariant">@color/purple_700</item>-->
|
||||
<!-- <item name="colorOnPrimary">@color/white</item>-->
|
||||
<!-- <!– Secondary brand color. –>-->
|
||||
<!-- <item name="colorSecondary">@color/teal_200</item>-->
|
||||
<!-- <item name="colorSecondaryVariant">@color/teal_700</item>-->
|
||||
<!-- <item name="colorOnSecondary">@color/black</item>-->
|
||||
<!-- <!– Status bar color. –>-->
|
||||
<!-- <item name="android:statusBarColor">?attr/colorPrimaryVariant</item>-->
|
||||
<!-- Customize your theme here. -->
|
||||
</style>
|
||||
</resources>
|
@ -1,4 +1,4 @@
|
||||
package com.example.myapplication;
|
||||
package com.example.register;
|
||||
|
||||
import org.junit.Test;
|
||||
|