borjaruiz

Results 12 comments of borjaruiz

Have you tried pdfView.fromAssets("/pdfs/file.pdf");?

To load pdf from url use this in a webview... https://drive.google.com/viewerng/viewer?embedded=true&url=PDF_URL

My method looks like this and it doesn't work when swiping... public void refreshCalendar(){ mAdapter = new CalendarAdapter(context,cal); calendar.setAdapter(mAdapter); } this does not works either. public void refreshCalendar(){ mAdapter.refreshDays(); mAdapter.notifyDataSetChanged();...

I just use this in the onCreateView() of my fragment, the layout is like the example: magicProgressCircle =(MagicProgressCircle) v.findViewById(R.id.demo_mpc); magicProgressCircle.setSmoothPercent(0.8f); Sometimes it works and others not

1.1.1 compile 'com.wefika:horizontal-picker:1.1.1'

Thanks! That was! The "how to use" instructions are wrong!!

Yes, the folder exists, versio 1.0.3 The problem is when I put some of your example code in my layout and run the project. Error inflating class com.wangjie.rapidfloatingactionbutton.RapidFloatingActionButton

I just saw that if I put a .setOverlay(layout) it works fine. I don't understand why it's mandatory to use a layout, furthermore it would be great to return a...

I've checked the examples before asking the question, and I can't find an example with an Activity, only found with fragments. I've done this and it doesn't work. I don't...