我的应用程序中有以下按钮,但是当我现在按下它时应用程序崩溃:
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);
安装了打印机共享程序,并且它的名称是正确的(用控制台上的 pm 检查)。我读了一些其他的帖子,我需要在清单中添加一些代码,但我不知道是什么。谁能帮助我并向我展示我需要添加到清单中的代码?