I want to display the the newly added values from the database in android.
Like current values are being displayed as a list of TextViews at the start of the application now when user clicks add button and enters new value(s) this value are added to the database and are immediately displayed at the bottom of the current values.Can anyone please tell me if there is any way to accomplish this.Thank you.
I want to display the the newly added values from the database in android.
Share
Since you are using a LinearLayout to display a “list” of TextViews, you will have to manually create a new TextView and add it to the LinearLayout when the new value is added to the database.