Нет поля Edittext в моем приложении работает. Клавиатура не включена - PullRequest
0 голосов
/ 27 августа 2018

Клавиатура никогда не включается при прикосновении к полю Edittext. Я не знаю причину этой проблемы. Тем не менее, я не могу написать любое поле edittext в моем приложении. Мой Gradle;

apply plugin: 'com.android.application'android {
compileSdkVersion 27
defaultConfig {
    applicationId "dotdotdot"
    minSdkVersion 22
    targetSdkVersion 26
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}}dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2',{
    exclude group: 'com.android.support', module: 'support-annotations'
})implementation 'com.android.support:appcompat-v7:27.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.android.support:support-v4:27.1.0'
implementation 'com.android.support:design:27.1.0'
implementation 'com.android.support:palette-v7:27.1.0'
implementation 'com.android.support:cardview-v7:27.1.0'
implementation 'com.android.support:recyclerview-v7:27.1.0'
implementation 'com.android.support:support-vector-drawable:27.1.0'
implementation 'com.jakewharton:butterknife:8.5.1'
implementation 'com.github.filippudak.progresspieview:library:1.0.+'
implementation 'com.github.rahatarmanahmed:circularprogressview:2.5.0'
implementation 'com.android.support:multidex:1.0.3'
implementation 'com.google.code.gson:gson:2.8.0'
implementation 'com.roughike:bottom-bar:2.0.2'
implementation 'com.intuit.sdp:sdp-android:1.0.5'
implementation 'com.android.volley:volley:1.0.0'
implementation 'com.github.bumptech.glide:glide:4.6.1'
implementation 'com.github.bumptech.glide:glide:4.6.1'
implementation 'com.github.d-max:spots-dialog:0.7@aar'
implementation 'com.github.aakira:expandable-layout:1.4.2@aar'
implementation 'com.github.mirrajabi:search-dialog:1.1'
implementation 'com.roomorama:caldroid:3.0.1'
implementation 'net.igenius:customcheckbox:1.3'
implementation 'com.evrencoskun.library:tableview:0.8.6'
implementation 'com.davemorrissey.labs:subsampling-scale-image-view:3.10.0'
implementation 'com.github.piasy:GlideImageLoader:1.4.6'
implementation 'com.googlecode.json-simple:json-simple:1.1'
implementation 'org.sufficientlysecure:html-textview:3.5'
implementation 'com.github.irshulx:laser-native-editor:2.1.0'
implementation 'com.github.PhilJay:MPAndroidChart:v3.0.3'
implementation 'jp.wasabeef:glide-transformations:3.1.1'
implementation 'com.github.firdausmaulan:GlideSlider:1.1.0'
implementation 'com.google.code.gson:gson:2.8.0'
implementation 'com.afollestad.material-dialogs:commons:0.9.6.0'
implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
implementation 'com.alespero:expandable-cardview:0.6'

Мой образец EditText Area:

<LinearLayout
    android:layout_marginTop="5dp"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="30dp"
        android:text="Notlar"
        android:textStyle="bold" />
    <EditText
        android:id="@+id/notes"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/details_top_margin_large"
        android:hint="No Data.."
        android:textColor="@color/colorAccent"
        android:textSize="14sp"
        android:textStyle="bold" />
</LinearLayout>

У меня есть два вида деятельности. LoginActivity и MainActivity. Есть также много фрагментов.

Edittexts хорошо работают в LoginActivity (имя пользователя и пароль), но в MainActivity не работает текст редактирования.

Вчера я сделал серьезное обновление SDK. Я не знаю, может ли это быть связано с этим, потому что я не внес много изменений в коды.

Я решил проблему. Это заняло день. Я не мог понять, почему, но я переместил проект в новый проект. И поля редактирования текста теперь работают.

Ответы [ 2 ]

0 голосов
/ 28 августа 2018

Если другие решения еще не работали, вы можете попробовать сделать фокусировку EditText:

android:focusable="true"
android:focusableInTouchMode="true"
0 голосов
/ 27 августа 2018

Ваш EditText прекрасно работает на моем телефоне, как на виртуальном, так и на реальном устройстве.

Однако,

Проблема может быть вызвана, если у вас не установлены все инструменты SDK. Пожалуйста, установите все, что перечислено в разделе Инструменты SDK.

Надеюсь, это поможет.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...