我有一些问题。我尝试做一件事,当用户按下按钮时,pdf文件在PDF阅读器中打开。我在程序中编写所有内容,但它不起作用。问题是什么?你能正确地给我写一个代码吗?我竭尽全力。我的代码:
package lt.sviesioji.kdainiviesiojigimnazija;
import android.content.ActivityNotFoundException;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentTransaction;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import java.io.File;
import java.io.InputStream;
/**
* A simple {@link Fragment} subclass.
*/
public class FormulynasFragment extends Fragment {
public FormulynasFragment() {
}
Button f;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
int backButtonCount = getFragmentManager().getBackStackEntryCount();
if (backButtonCount > 0) {
Fragment newFragment = new PagrindinisFragment();
FragmentTransaction transaction = getFragmentManager().beginTransaction();
transaction.replace(R.id.fragment_container, newFragment);
transaction.addToBackStack(null);
transaction.commit();
}
final View rootView = inflater.inflate(R.layout.fragment_formulynas, container,
false);
f = (Button) rootView.findViewById(R.id.button69);
f.setOnClickListener(new View.OnClickListener() {
InputStream is = getResources().openRawResource(R.raw.matematika);
@Override
public void onClick(View v) {
startpdf();
}
private void startpdf() {
// TODO Auto-generated method stub
File file = new File("R.id.matematika");
if (file.exists()) {
Uri path = Uri.fromFile(file);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
try {
startActivity(intent);
}
catch (ActivityNotFoundException e) {
}
}
}
});
return rootView;
}
}
答案 0 :(得分:0)
你有一些问题。
首先,R.id.matematika
不是文件。这是资源的ID。资源只是开发计算机上的文件。 {/ 1}}在Android设备上毫无意义。
其次,虽然您可以使用new File("R.id.matematika")
android.resource:
方案,但很少有应用支持它。
第三,虽然您可以将原始资源复制到文件,然后打开文件support for that is fading away。
您的主要选择是:
将资源复制到internal storage上的文件,然后use FileProvider
使用my StreamProvider
,可以直接从原始资源中提供PDF(虽然我建议您将其放在Uri
中)