Android Material 设计 TextInputEditText 无法获取字符串
Android Material Design TextInputEditText not able to get the string
我在 android 应用程序注册页面中使用 material 设计。我在 xml 文件中使用了以下代码。
XML 文件
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/regEmailId"
android:hint="Email Id"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</com.google.android.material.textfield.TextInputLayout>
上面的 xml 是从线性布局内部呈现的。
在我的 Java 文件中,我写了以下内容:
TextInputLayout regMailId = findViewById(R.id.regEmailId);
Editable regEmail = regMailId.getEditText().getText();
我遵循了此 SO post 中给出的选项。虽然答案表明我应该使用
String text = textInputLayout.getEditText().getText();
我在 Android Studio 中遇到错误,迫使我将其更改为:
Change variable text type to editable
Migrate text type to editable
Wrap using String.valueOf()
如果我使用
的字符串值换行
String text = String.valueOf( regMailId.getEditText().getText() );
我没有得到可变文本的输出。
当我把它改成
Editable regEmail = regMailId.getEditText().getText();
我可以烘烤输入文本,但我无法获取实际文本以对其进行任何验证。例如,password
和 confirmpassword
字段,我无法比较,但我可以看到值被烘烤。
当我尝试获取 regEmail
的变量类型时,我得到了以下结果:
java.lang.String.android.text.SpannableStringBuilder
我尝试使用 toString()、getText().toString() 等方法将字符串提取到 regEmail。没有任何效果。
如何在 material 设计布局中获取文本输入字段的字符串。
以下是我的应用gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
defaultConfig {
applicationId "com.example.telescope"
minSdkVersion 16
targetSdkVersion 29
versionCode 1
versionName "1.0"
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.google.android.material:material:1.2.0'
implementation 'com.android.support:multidex:2.0.0'
implementation 'com.amplifyframework:core:1.1.2'
implementation 'com.amplifyframework:aws-datastore:1.1.2'
implementation 'com.amplifyframework:aws-api:1.1.2'
implementation 'com.amplifyframework:aws-auth-cognito:1.3.0'
}
要获取 'real time' 中的文本,您应该将 TextChangeListener 添加到 EditText 对象:
TextInputLayout regMailId = findViewById(R.id.regEmailId);
regEmailId.getEditText().addTextChangedListener(new TextWatcher() {
public void afterTextChanged(Editable s) {}
public void beforeTextChanged(CharSequence s, int start,
int count, int after) {}
public void onTextChanged(CharSequence s, int start,
int before, int count) {
//get the String from CharSequence with s.toString() and process it to validation
}
});
只需将 id 属性添加到 [com.google.android.material.textfield.TextInputEditText],然后您就可以从 Java class.
中调用它
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/edittext"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
然后你可以在Javaclass中对它进行inflate,得到它的对象
TextInputEditText textInputEditText = findViewById(R.id.edittext);
// Get text
textInputEditText.getText().toString();
// watch the edit text
textInputEditText.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
@Override
public void afterTextChanged(Editable s) {
}
});
我在 android 应用程序注册页面中使用 material 设计。我在 xml 文件中使用了以下代码。
XML 文件
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/regEmailId"
android:hint="Email Id"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</com.google.android.material.textfield.TextInputLayout>
上面的 xml 是从线性布局内部呈现的。
在我的 Java 文件中,我写了以下内容:
TextInputLayout regMailId = findViewById(R.id.regEmailId);
Editable regEmail = regMailId.getEditText().getText();
我遵循了此 SO post
String text = textInputLayout.getEditText().getText();
我在 Android Studio 中遇到错误,迫使我将其更改为:
Change variable text type to editable
Migrate text type to editable
Wrap using String.valueOf()
如果我使用
的字符串值换行String text = String.valueOf( regMailId.getEditText().getText() );
我没有得到可变文本的输出。
当我把它改成
Editable regEmail = regMailId.getEditText().getText();
我可以烘烤输入文本,但我无法获取实际文本以对其进行任何验证。例如,password
和 confirmpassword
字段,我无法比较,但我可以看到值被烘烤。
当我尝试获取 regEmail
的变量类型时,我得到了以下结果:
java.lang.String.android.text.SpannableStringBuilder
我尝试使用 toString()、getText().toString() 等方法将字符串提取到 regEmail。没有任何效果。
如何在 material 设计布局中获取文本输入字段的字符串。
以下是我的应用gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
defaultConfig {
applicationId "com.example.telescope"
minSdkVersion 16
targetSdkVersion 29
versionCode 1
versionName "1.0"
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.google.android.material:material:1.2.0'
implementation 'com.android.support:multidex:2.0.0'
implementation 'com.amplifyframework:core:1.1.2'
implementation 'com.amplifyframework:aws-datastore:1.1.2'
implementation 'com.amplifyframework:aws-api:1.1.2'
implementation 'com.amplifyframework:aws-auth-cognito:1.3.0'
}
要获取 'real time' 中的文本,您应该将 TextChangeListener 添加到 EditText 对象:
TextInputLayout regMailId = findViewById(R.id.regEmailId);
regEmailId.getEditText().addTextChangedListener(new TextWatcher() {
public void afterTextChanged(Editable s) {}
public void beforeTextChanged(CharSequence s, int start,
int count, int after) {}
public void onTextChanged(CharSequence s, int start,
int before, int count) {
//get the String from CharSequence with s.toString() and process it to validation
}
});
只需将 id 属性添加到 [com.google.android.material.textfield.TextInputEditText],然后您就可以从 Java class.
中调用它 <com.google.android.material.textfield.TextInputEditText
android:id="@+id/edittext"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
然后你可以在Javaclass中对它进行inflate,得到它的对象
TextInputEditText textInputEditText = findViewById(R.id.edittext);
// Get text
textInputEditText.getText().toString();
// watch the edit text
textInputEditText.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
@Override
public void afterTextChanged(Editable s) {
}
});