Отображение элементов массива в TextView - PullRequest
2 голосов
/ 15 февраля 2020

**** Я очень новичок в Java и android studio и пытаюсь отобразить отдельный элемент моего массива в моем textView wordTextView с каждым нажатием кнопки. Когда я нажимаю кнопку на эмуляторе, ничего не отображается. Я также пытался использовать для l oop, но я не могу заставить его работать. Любая помощь будет принята с благодарностью ****

public class MainActivity extends AppCompatActivity {

    int i = 0;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    public void nextWord(View view) { //nextWord is the onclick of the button
        i = i++;
    }

    public void getNextWord(String string) {
        String [] array = {"Noun", "Adjective", "Proper Noun", "Name"};
        TextView wordTextView = findViewById(R.id.wordTextView);
        wordTextView.setText(array[i]);    
    }
}

Вот файл. xml

<?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"
    android:onClick="nextWord"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/wordTextView"
        android:layout_width="155dp"
        android:layout_height="153dp"
        android:layout_marginTop="84dp"
        android:gravity="center"
        android:textSize="30sp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <EditText
        android:id="@+id/enterEditText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="280dp"
        android:ems="10"
        android:hint="Something"
        android:inputType="textPersonName"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="@+id/wordTextView" />

    <Button
        android:id="@+id/nextButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="180dp"
        android:onClick="nextWord"
        android:text="Next"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.498"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="@+id/enterEditText"
        app:layout_constraintVertical_bias="0.0" />
</androidx.constraintlayout.widget.ConstraintLayout>

Ответы [ 2 ]

2 голосов
/ 15 февраля 2020

Вызовите ваш метод getNextWord () в nextWord ()

public void nextWord(View view) { //nextWord is the onclick of the button
    i = i++;
getNextWord();
}

И удалите параметр из getNextWord ().

0 голосов
/ 15 февраля 2020

Вы можете сделать что-то вроде этого:

public class MainActivity extends AppCompatActivity {

    int i = 0;

    TextView wordTextView; // declare your textView here

    // no need to create array again in "getNextWord" method
    String[] array = {"Noun", "Adjective", "Proper Noun", "Name"};

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main); 

        // initialise text view here
        wordTextView = findViewById(R.id.wordTextView);
    }

    public void nextWord(View view) { //nextWord is the onclick of the button
        i = i++;
        getNextWord() // call this method here, without passing string
    }

    public void getNextWord() {
        // you need to check the value of "i", it should not be greater than "array" size.
        // you can simply do 
        // i = i% array.length
        // or you can check index with if-condition
        // otherwise you will get "ava.lang.ArrayIndexOutOfBoundsException" if i >= array.length
        wordTextView.setText(array[i]);    
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...