私は自分のコンピューターで作成した楽しい小さなスクリプトを呼び出す Android アプリを作成しようとしています。Web ブラウザーでスクリプトを開くと、コンピューターは「ビープ」コマンドを実行します。ボタンを押すとウェブサイトが呼び出され、コンピューターのビープ音が鳴るように、Androidアプリ内からこれを行うにはどうすればよいですか? 私はこれを試しましたが、私にはうまくいかないようでした。
HttpGet httpget = new HttpGet(
"http://www.blah.com/beep.php");
詳細: サーバーで実行しているコード:
beeping!
<?php
shell_exec("beep -f 2000 -r 3 -l 100 -d 20"); ?>
beep メソッドを呼び出すボタンを持つアプリを実行しています。
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
} //here is the error that says i need to remove this token
new Thread(new Runnable() {
public void run(){
try{
HttpClient httpclient = new DefaultHttpClient();
HttpGet httpget = new HttpGet(
"http://www.blah.com/beep.php");
}
catch(Exception e){
throw e;
}}
}).start();
} //here is the error to insert } to complete classbody