Yaşlılar için alarm ayarlamak için bakım veren tarafından kullanılmak üzere bir alarm sistemi oluşturdum. Bu alarmın, nasıl ben sadece veri Tersini altındaki her seferindeFirebase alarmı
mListAdapter = new FirebaseListAdapter<notify>(this, notify.class, android.R.layout.two_line_list_item, mRoot) {
@Override
protected void populateView(View view, notify notify, int i) {
((TextView)view.findViewById(android.R.id.text1)).setText(notify.getCourse() + "Quantity:" + notify.getQuantity() +"," + notify.getRepeat());
((TextView)view.findViewById(android.R.id.text2)).setText("Medication set to " +notify.getDate() + " at " + notify.getTime());
}
}; listView.setAdapter(mListAdapter);
Ben listView.setStackFromBottom (true) ekledim, ancak yine de en güncel olanı görüntülemek için verilerimi yeniden düzenlemiyor. Neden böyle? –