dhruvilbadani

Results 8 comments of dhruvilbadani

Fixed, thank you. Another question though. I am using a Big Image with Buttons card. I'm using the setDrawable(String) method to set the image. How do I make this image...

Solved as in? I don't need to do anything more than setDrawable() with my URL?

Okay so I used 2.4.6. The images are centered but they yet do not fit the width of the card. Any help would be awesome

Thanks for that. I tried all the ScaleTypes but to no avail. Am I missing something here?

String useURL = "http://assets.sbnation.com/assets/1035916/crazy-car-accident.jpeg"; BigImageButtonsCard card = new BigImageButtonsCard(getApplicationContext()); card.setDrawable(useURL); card.setImageScaleType(ImageView.ScaleType.CENTER); // Tried the scale types CENTER, CENTER_CROP, CENTER_INSIDE, FIT_CENTER, FIT_END, FIT_START, FIT_XY and MATRIX at this line card.setDescription(cardDescription); card.setDescriptionColor(Color.BLACK);...

It's a basic question but how do I import the 'materialList' module to my project? I have git cloned the project into my project's folder.

Yes exactly, but I can't find the import module option in File in Android Studio. I went into the project Structure option and tried adding, but failed.

So I should: 1. groupBy my key 2. Then use mapGroup to apply a function on all i_k where i_k is the iterator for all values with key k Is...