JavaFX объект listView для отображения имени объекта в виде tostring в списке - PullRequest
0 голосов
/ 24 апреля 2018

Я создаю приложение в JavaFX с файлом FXML. Приложение будет иметь представление списка, которое принимает класс объекта person для firstName, lastName и примечания для personalHobbies. Все с геттерами и сеттерами. И к строке со всеми соответствующими элементами. Каждая часть класса набирается в текстовом поле в приложении пользователем в списке пользователей. И когда человек выбран, все части в toString каждого класса человека выглядят так: Джон кузнец Хобби включают видеоигры, игры и письма.

Приложение также содержит кнопку для добавления и удаления человека из списка. Проблема в том, что вся информация в строке отображается в списке, а не только в имени. Я использовал наблюдаемый Arraylist И все, но это работает. Это мой первый пост, и я новичок в JavaFX, поэтому, пожалуйста, прости меня, но мне нужна помощь, заранее спасибо.

Класс контроллера с классом Person

import java.net.URL;
import java.util.ResourceBundle;
import javafx.application.Platform;
import javafx.beans.value.ChangeListener;
import javafx.beans.value.ObservableValue;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.ListView;
import javafx.scene.control.TextArea;
import javafx.scene.control.TextField;

public class ListViewWithTextAreaController implements Initializable{

@FXML
private TextArea textArea;

@FXML
private ListView<Person> listView;

@FXML
private TextField firstName;

@FXML
private TextField lastName;

@FXML
private TextArea personalHobbies;

//Key Component: ObservableList with variety of string item types for list.
final ObservableList<Person> listPerson = FXCollections.observableArrayList();


@FXML
void addButtonClicked(ActionEvent event) {
    //adds new item from the user to the list.

    Person newPerson = new Person(firstName.getText());
    newPerson.setLastName(lastName.getText());
    newPerson.setPersonalHobbies(personalHobbies.getText());

    listPerson.add(newPerson);

    String about = newPerson.toString();

    //shows the currently added Person to the TextField.
    textArea.setText(about);
    clearTextRefocus();

}

@FXML
void deleteButtonClicked(ActionEvent event){
    //Deletes the currently selected Person from the list.
    Person selectionToRemove = listView.getSelectionModel().getSelectedItem();
    listPerson.remove(selectionToRemove);

    textArea.clear();
    clearTextRefocus();

}

@Override
public void initialize(URL url, ResourceBundle rb){

    //Set the listed observableList items to the listView as selections.
    listView.setItems(listPerson);

        //ChangeListener for TextField to update for changes in focus on List items.
    listView.getSelectionModel().selectedItemProperty().addListener(new ChangeListener<Person>() {
        @Override
        public void changed(ObservableValue<? extends Person> observable, Person oldValue, Person newValue) {
      if(listView.isFocused()){
          textArea.setText(newValue.toString());
          //textArea.getText();
      }
   }
   });    

    //Gets the selection of the first index model type in the listView,     then
    //Wrap the requestFocus inside a Platform.runLater() to set the focus
    //on the first element of the string index of zero "Add/Delete items Here".
    listView.getSelectionModel().select(0);

    Platform.runLater(new Runnable(){
        @Override
        public void run(){
            listView.requestFocus();
        }
    });
}

//Person  class.
private static class Person {

private String firstName;
private String lastName;
private String personalHobbies;

public Person(String firstName) {
    this.firstName = firstName;
    this.lastName = lastName = "";
    this.personalHobbies = "";
}

public String getFirstName() {
    return firstName;
}

public void setFirstName(String firstName) {
    this.firstName = firstName;
}

public String getLastName() {
    return lastName;
}

public void setLastName(String lastName) {
    this.lastName = lastName;
}

public String getPersonalHobbies() {
    return personalHobbies;
}

public void setPersonalHobbies(String personalHobbies) {
    this.personalHobbies = personalHobbies;
}

@Override
public String toString() {
    return String.format("firstName " + firstName + "\nlastName " +   lastName 
            + "\n\tpersonal Hobbies " + personalHobbies);     

    }
}
public void clearTextRefocus(){
    //Auto clear the user Typing textFields.
    firstName.clear();
    lastName.clear();
    personalHobbies.clear();

    listView.requestFocus(); //Place focus back on the list (stops focus glitch).
}

}

Все toString как имя выбора

1 Ответ

0 голосов
/ 25 апреля 2018

Я также смог выяснить, как заставить его работать, но это был неправильный способ, изменив строку на getMethod и создав строку для передачи в качестве значения setText textArea в слушателе измененийметод инициализации.и изменение конструктора самого класса Person.CellFactory был необходим в этом случае с прослушивателем изменений, как было предложено James_D и kleopatra.Я помещаю правильный код и неправильный код, чтобы показать другим, как я, как правильно выполнить это, а что нет.

Вот правильный путь с cellFactory и слушателем изменений:

cellFactory правильный путь

import java.net.URL;
import java.util.ResourceBundle;
import javafx.application.Platform;
import javafx.beans.value.ObservableValue;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.ListCell;
import javafx.scene.control.ListView;
import javafx.scene.control.TextArea;
import javafx.scene.control.TextField;

public class ListViewWithTextAreaController implements Initializable{

//Key Component: ObservableList with variety of string item types for list.
final ObservableList<Person> listPerson =  FXCollections.observableArrayList();

@FXML
private TextArea textArea;

@FXML
private ListView<Person> listView;

@FXML
private TextField firstName;

@FXML
private TextField lastName;

@FXML
private TextArea personalHobbies;


@FXML
void addButtonClicked(ActionEvent event) {
    //adds new item from the user to the list.

    Person newPerson = new Person(firstName.getText(), lastName.getText(),personalHobbies.getText());

    listPerson.add(newPerson);

    //shows the currently added Person to the TextField.
    textArea.setText(newPerson.toString());
    clearTextRefocus();

}

@FXML
void deleteButtonClicked(ActionEvent event){
    //Deletes the currently selected Person from the list.
    Person selectionToRemove = listView.getSelectionModel().getSelectedItem();
    listPerson.remove(selectionToRemove);

    textArea.clear();
    clearTextRefocus();

}

@Override
public void initialize(URL url, ResourceBundle rb){

    //Set the listed observableList items to the listView as selections.
    listPerson.add(new Person("Sam", "Hill", "Spelunking and exploring caves."));
    listPerson.add(new Person("Jane", "Plane", "Reading Books and sewing."));
    listPerson.add(new Person("Bernice", "Ternice", " Things and stuff."));
    listView.setItems(listPerson);


    //cell factory implemented.
    listView.setCellFactory(param -> new ListCell<Person>() {
        @Override
        protected void updateItem(Person p, boolean empty){
        super.updateItem(p, empty);
            if(empty || p == null || p.getFirstName() == null){
                setText("");
            }
            else{
                setText(p.getFirstName());
                //Change listener implemented.
                listView.getSelectionModel().selectedItemProperty().addListener((ObservableValue<? extends Person> observable, Person oldValue, Person newValue) -> {
        if(listView.isFocused()){
            textArea.setText(newValue.toString());
        }
    });    
            }

        }
    });

    Platform.runLater(new Runnable(){
        @Override
        public void run(){
            listView.requestFocus();
        }
    });
}

public void clearTextRefocus(){
    //Auto clear the user Typing textFields.
    firstName.clear();
    lastName.clear();
    personalHobbies.clear();

    listView.requestFocus(); //Place focus back on the list (stops focus glitch).
}

    //Person  class.
private static class Person {

private String firstName;
private String lastName;
private String personalHobbies;

public Person(String firstName, String lastName, String hobbies) {
    this.firstName = firstName;
    this.lastName = lastName;
    this.personalHobbies = hobbies;
}

public String getFirstName() {
    return firstName;
}

public void setFirstName(String firstName) {
    this.firstName = firstName;
}

public String getLastName() {
    return lastName;
}

public void setLastName(String lastName) {
    this.lastName = lastName;
}

public String getPersonalHobbies() {
    return personalHobbies;
}

public void setPersonalHobbies(String personalHobbies) {
    this.personalHobbies = personalHobbies;
}

@Override
public String toString() {
    return String.format(getFirstName() + "\n" + getLastName() + "\n\t" + getPersonalHobbies());     

    }
}

}

Вот неправильный код и изображение:

неверный список View Image

package listviewwithtextarea;

import java.net.URL;
import java.util.ResourceBundle;
import javafx.application.Platform;
import javafx.beans.value.ObservableValue;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.ListView;
import javafx.scene.control.TextArea;
import javafx.scene.control.TextField;

public class ListViewWithTextAreaController implements Initializable{

@FXML
private TextArea textArea;

@FXML
private ListView<Person> listView;

@FXML
private TextField firstName;

@FXML
private TextField lastName;

@FXML
private TextArea personalHobbies;

//Key Component: ObservableList with variety of string item types for list.
final ObservableList<Person> listPerson = FXCollections.observableArrayList();  

@FXML
void addButtonClicked(ActionEvent event) {
    //adds new item from the user to the list.

    Person newPerson = new Person(firstName.getText(), lastName.getText(),personalHobbies.getText());

    listPerson.add(newPerson);

    //shows the currently added Person to the TextField.
    textArea.setText(newPerson.toString());
    clearTextRefocus();

}

@FXML
void deleteButtonClicked(ActionEvent event){
    //Deletes the currently selected Person from the list.
    Person selectionToRemove = listView.getSelectionModel().getSelectedItem();
    listPerson.remove(selectionToRemove);

    textArea.clear();
    clearTextRefocus();

}

@Override
public void initialize(URL url, ResourceBundle rb){

    //Set the listed observableList items to the listView as selections.
    listPerson.add(new Person("Sam", "Hill", "Spelunking and exploring caves."));
    listPerson.add(new Person("Jane", "Plane", "Reading Books and sewing."));
    listPerson.add(new Person("Bernice", "Ternice", " Things and stuff."));
    listView.setItems(listPerson);

        //ChangeListener for TextField to update for changes in focus on List items.
    listView.getSelectionModel().selectedItemProperty().addListener((ObservableValue<? extends Person> observable, Person oldValue, Person newValue) -> {
        if(listView.isFocused()){
            String info = String.format(newValue.getFirstName() + "\n" +
                    newValue.getLastName() + "\n\t" + newValue.getPersonalHobbies());
            textArea.setText(info);
        }
    });    

    //Gets the selection of the first index model type in the listView, then
    //Wrap the requestFocus inside a Platform.runLater() to set the focus
    //on the first element of the string index of zero "Add/Delete items Here".
    listView.getSelectionModel().select(0);

    Platform.runLater(new Runnable(){
        @Override
        public void run(){
            listView.requestFocus();
        }
    });
}

public void clearTextRefocus(){
    //Auto clear the user Typing textFields.
    firstName.clear();
    lastName.clear();
    personalHobbies.clear();

    listView.requestFocus(); //Place focus back on the list (stops focus glitch).
}

    //Person  class.
private static class Person {

private String firstName;
private String lastName;
private String personalHobbies;

public Person(String firstName, String lastName, String hobbies) {
    this.firstName = firstName;
    this.lastName = lastName;
    this.personalHobbies = hobbies;
}

public String getFirstName() {
    return firstName;
}

public void setFirstName(String firstName) {
    this.firstName = firstName;
}

public String getLastName() {
    return lastName;
}

public void setLastName(String lastName) {
    this.lastName = lastName;
}`enter code here`

public String getPersonalHobbies() {
    return personalHobbies;
}

public void setPersonalHobbies(String personalHobbies) {
    this.personalHobbies = personalHobbies;
}

@Override
public String toString() {
    return getFirstName();     

    }
}

}

...