parent
d01abe8378
commit
0ade5d95a9
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="RenderSettings">
|
||||
<option name="showDecorations" value="true" />
|
||||
</component>
|
||||
</project>
|
@ -1,14 +0,0 @@
|
||||
package com.example.register;
|
||||
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
|
||||
import android.os.Bundle;
|
||||
|
||||
public class MainActivity extends AppCompatActivity {
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.login);
|
||||
}
|
||||
}
|
@ -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;
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 368 B |
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue