我的应用程序中有以下按钮,但是当我立即按下它时应用程序崩溃了:
Button newButton = (Button)findViewById(R.id.afronden);
newButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
final Uri printFileUri = Uri.parse("http://ipadress/tablet1.txt");
Intent i = new Intent(Intent.ACTION_VIEW);
i.setPackage("com.dynamixsoftware.printershare");
i.setDataAndType(printFileUri,"text/plain");
i.putExtra( "scaleFitToPage", true );
startActivity(i);
安装了printershare程序,其名称正确(在控制台上用pm检查)。 我读了一些其他帖子,我需要在清单中添加一些代码,但我无法弄清楚是什么。谁可以帮助我并告诉我需要添加到我的清单中的代码?