- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我的 Activity 中有这段代码
public class RegisterActivity extends AppCompatActivity {
private static final String TAG = RegisterActivity.class.getSimpleName();
private TextInputLayout mDisplayName;
private TextInputLayout mEmail;
private TextInputLayout mPassword;
private Button mCreateBtn;
private FirebaseAuth mAuth;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_register);
mAuth = FirebaseAuth.getInstance();
mDisplayName = (TextInputLayout)findViewById(R.id.reg_display_name);
mEmail = (TextInputLayout)findViewById(R.id.reg_email);
mPassword = (TextInputLayout)findViewById(R.id.reg_password);
mCreateBtn = (Button) findViewById(R.id.reg_create_btn);
mCreateBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String displayName = mDisplayName.getEditText().getText().toString();
String email = mEmail.getEditText().getText().toString();
String password = mPassword.getEditText().getText().toString();
registerUser(displayName,email,password);
}
});
}
private void registerUser(String displayName, String email, String password) {
mAuth.signInWithEmailAndPassword(email,password)
.addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
if(task.isSuccessful()){
Intent mainIntent = new Intent(RegisterActivity.this,MainActivity.class);
startActivity(mainIntent);
finish();
}else{
Toast.makeText(RegisterActivity.this,"You got some error.",Toast.LENGTH_SHORT).show();
}
}
});
}
}
其对应的XML代码为:
<android.support.constraint.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=".RegisterActivity">
<android.support.design.widget.TextInputLayout
android:id="@+id/textInputLayout2"
android:layout_width="368dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<android.support.design.widget.TextInputEditText
android:id="@+id/reg_display_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="hint"
android:text="Display name" />
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:id="@+id/textInputLayout3"
android:layout_width="368dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textInputLayout2">
<android.support.design.widget.TextInputEditText
android:id="@+id/reg_email"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="hint"
android:text="Email" />
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:id="@+id/textInputLayout4"
android:layout_width="368dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textInputLayout3">
<android.support.design.widget.TextInputEditText
android:id="@+id/reg_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="hint"
android:text="Password" />
</android.support.design.widget.TextInputLayout>
<Button
android:id="@+id/reg_create_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="Create account"
android:textAllCaps="false"
app:layout_constraintTop_toBottomOf="@+id/textInputLayout4"
tools:layout_editor_absoluteX="255dp" />
</android.support.constraint.ConstraintLayout>
当我运行应用程序时,我收到了这条消息:
Caused by: java.lang.ClassCastException: android.support.design.widget.TextInputEditText cannot be cast to android.support.design.widget.TextInputLayout
我也给你 gradle 文件以防万一设计版本有问题。
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "theo.tziomakas.lapitchat"
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support.constraint:constraint-
layout:1.1.0'
implementation 'com.google.firebase:firebase-auth:11.6.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation
'com.android.support.test.espresso:espresso-core:3.0.2'
}
apply plugin: 'com.google.gms.google-services'
那么有什么想法可以解决这个异常吗?
谢谢西奥。
最佳答案
尝试转换为
private TextInputEditText mDisplayName;
private TextInputEditText mEmail;
private TextInputEditText mPassword;
mDisplayName = (TextInputEditText)findViewById(R.id.reg_display_name);
mEmail = (TextInputEditText)findViewById(R.id.reg_email);
mPassword = (TextInputEditText)findViewById(R.id.reg_password);
关于android - TextInputEditText 无法转换为 TextInputLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50150450/
我有一个布局,我想在其中显示一堆编辑文本和一个日期选择器。因为我想对所有字段进行相同的设计,所以我发现我也需要为日期选择器使用编辑文本,但使其不可编辑但可点击。下面是我的编辑文本的 xml 代码,将用
我正在使用 TextInputEditText s 作为文本输入,当我选择它们时,提示会向上移动,但会被框的轮廓覆盖。有谁知道为什么会这样? 照片 : 代码 : 最佳答案
如果我使用最新的 Material 库版本 com.google.android.material:material:1.2.0-alpha02,我会遇到 TextInputEditText 及其提示
我想设计如下: 在输入用户输入之前: 用户输入数字 是否可以扩展 TextInputEditText 来实现这个请求? 我一直在寻找设计讨论, how can i underline each cha
在我的应用程序中,我有一个 EditText。 这个EditText用于货币输入,例如:2.23, 9.99 换句话说,用户可以输入 2 然后 . 然后 23 到这个 EditText 为了实现 Ed
我有一个包含在 TextInputLayout 中的 TextInputEditText。但是,在某些键盘上,当用户有拼写建议并点击单词以显示建议的弹出列表时,我的应用程序会严重崩溃,将键盘留在屏幕上
我的 EditText 有一个大问题,它在我将焦点从元素上移开之前不显示任何输入。当我点击输入时,键盘出现,当我打字时,编辑 TextView 中没有显示任何内容。输入仅在我关闭键盘时显示 不是颜色的
我正在研究一种要求所有 View 都向左对齐的设计。 我正在使用 TextInputLayout && TextInputEditText hint 有空格& text通过设置 解决padding 至
我有一个 Android 屏幕,可以接收用户的电子邮件。下面是代码 fragment ,我想删除文本下方出现的下划线。 我已经尝试过android:background="@null"和
我正在尝试适应 TextInputEditText到整个屏幕,但这并非没有问题: 输入类型: TextInputEditText tv = findView
我一直在尝试将应用程序的 fontfamily 更改为 Advent Pro。问题是只有我的 textinputedittext 产生此错误 java.lang.RuntimeException: F
我试图通过创建一个 TextDrawable 然后使用 compoundDrawable 设置它来为我的 TextInputEditText 添加一个后缀。一切都进行得相当顺利,除了可绘制对象被剪裁到
我需要删除 TextInputEditText 的底线我将背景设置为透明和 null 但没有任何效果。 bg_textinput_layout 最佳答案 您可以应用 app:b
我正在尝试将 TextInputEditText 设置为只读,但我发现光标快速闪烁并触发了点击。 我尝试设置 isFocusable = false 和 isClickable = false。 XM
我在 textInputLayout 中使用 textInputEditText我必须为我的 editText 设置背景才能为我的 editText 实现带边框的 View 。但是当我在 textIn
我尝试在我的 XML 中使用 TextInputEditText,但我遇到了这个错误: Caused by: android.view.InflateException: Binary XML fil
我想更改 TextInputEditText 提示的文本颜色。似乎无论我更改什么,颜色始终是主要应用程序主题的颜色。 和基本样式
我的 Activity 中有这段代码 public class RegisterActivity extends AppCompatActivity { private static final St
我将 TextInputEditText 与 databinding 一起使用 - 直到最近它运行良好。这是出现此问题的布局之一:
我有一个简单的 TextInputEditText嵌套在 TextTnputLayout . 我正在尝试制作 TIL与 TIET 中给出的提示一样长. 但问题是,它没有显示任何东西 我必
我是一名优秀的程序员,十分优秀!