When I click the Button
it open the link
and ask me what program I want to open pdf
. Then it pop's up a message box and says file has (0 byte) cant open.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void browser1(View view){
Intent BrowserIntent=new Intent(Intent.ACTION_VIEW,
Uri.parse("http://www.docdroid.net/file/download/mUaJciS/contatos-lubrifuel.pdf"));
startActivity(BrowserIntent);
}
}