How to get Keys and Values using FirebaseListAdapter

蹲街弑〆低调 提交于 2019-11-28 05:55:34

问题


this code get the values and set them in listview i want to get keys to use them also, please see the image to view the database example

FirebaseListAdapter firebaseListAdapter = new FirebaseListAdapter<String>(this, String.class, R.layout.users_list, usersUrl) {
        @Override
        protected void populateView(View view, String base64Image, int i) {
            //((TextView) view.findViewById(android.R.id.text1)).setText(s);
            byte[] imageAsBytes = Base64.decode(base64Image.getBytes(), Base64.DEFAULT);
            Bitmap bitmap =BitmapFactory.decodeByteArray(imageAsBytes, 0, imageAsBytes.length);

            ((ImageView)view.findViewById(R.id.imageView1)).setImageBitmap(RoundedImageView.getCroppedBitmap(bitmap,100));



        }
    };

database Image


回答1:


You can get the DatabaseReference for the current item by calling getRef(position):

protected void populateView(View view, String base64Image, int position) {
    DatabaseReference itemRef = getRef(position);
    String itemKey = itemRef.getKey();
    ...


来源:https://stackoverflow.com/questions/37568703/how-to-get-keys-and-values-using-firebaselistadapter

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!