私は現在、憲法を読むことができるアンドロイドアプリケーションに取り組んでいます。私はソフトコピーPDF文書に手をつけています。私は方法を必要とConstitutionへのリンクは理想的には、私は私がトピック、問題や段落によって文書を取得できるようになるAPIを望んでいた、私はここで PDFをテキストに変換してアンドロイドから読む
1. Is by putting the document on the server, when user opens the app it downloads the pdf and allows them to read it(Problem with this is I won't be able to mess with the content like bold some text etc).
2. Is copying the content of the pdf into the databse and just fetching the text with a query(issue with this is I wont be able to do pagination given I put the content in one field)
を仕事を得るための複数の方法を考えていますデータベースからデータを読み込むことができます。これは、一度に1つの段落またはトピックを読み込むことができるようになります。似たような状況になっている人なら誰でも可能な限り最良の方法を見つけ出すことができますか?
を見つけたこの答えをチェックし、アプリケーションでMuPdfを統合することができますか?私はそれが私の問題のほとんどを処理することを意味しますか? –