0

アプリケーションにリモートPDFを埋め込もうとしています、、、、

これは私がグーグルを検索した後に試したものです-

public void onCreate(Bundle savedInstanceState){
    super.onCreate(savedInstanceState);
    setContentView(R.layout.pdf);

    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.setDataAndType(Uri.parse("http://mydomain.com/downloads/abc.pdf"), "application/pdf");
    intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

        try {
            startActivity(intent);
        } 
        catch (ActivityNotFoundException e) {
            Toast.makeText(TestPdf.this, 
                "No Application Available to View PDF", 
                Toast.LENGTH_SHORT).show();
        }
}

常にキャッチブロックに入る、、

「https://docs.google.com/viewer/....」を使用するためのソリューションもありますが、GoogleはPDFをダウンロードするオプションを提供しています、、、

リモートpdf(ダウンロードを許可しない)を埋め込むアクティビティ(ヘッダーとフッターを含む)を持つソリューションを探しています、、、、

ありがとう

4

0 に答える 0