FolioReader / FolioReader-Android

A Java ePub reader and parser framework for Android.
BSD 3-Clause "New" or "Revised" License
2.24k stars 710 forks source link

The progressBar is missing on 0.5.4 version #513

Open ctkqiang opened 2 years ago

ctkqiang commented 2 years ago

The exception I got was AAPT: error: resource android:attr/android:progressBarStyle not found.. I open the source in progress_dialog.xml of the library

            style="?android:attr/android:progressBarStyle" />

This line seems to be the problem.

@hebertialmeida @kjantzer @mahavir155 @thestr4ng3r @n0m0r3pa1n

Supposedly,

  <ProgressBar
            android:id="@+id/loading"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            style="?android:attr/progressBarStyle" />
sinhpn92 commented 2 years ago

I have same issue

ctkqiang commented 2 years ago

I have same issue

Sadly the Dev is not actively looking to fix the bug

sinhpn92 commented 2 years ago

Did you solve or found other lib? @johnmelodyme

ctkqiang commented 2 years ago

Did you solve or found other lib? @johnmelodyme

I solved it by git clone the source and fix the code myself as I mentioned the solution above. It's just the 'progress_dialog.xml' is missing.

Perhaps we should fork this project and maintain our own.