အေပၚမွာ ေျပာထားတဲ့အတိုင္း AIDE Apk စတင္ဖြင့္ပါ။ၿပီးရင္ res>>>>layout>>>>main.xmlကိုဖြင့္ပါ။
ေအာက္က code ကို ထည့္ပါ။
<Button
android:layout_height="wrap_content"
android:text="Button"
android:layout_width="wrap_content"
android:id="@+id/button"/>
src >>> MainActivity.java ကိုဖြင့္ပါ။ ေအာက္က code ကို ထည့္ပါ။
(import)အပိုင္း
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.widget.Button;
import android.view.View;
import android.view.View.OnClickListener;
Button button;
Source(အပိုင္း)
addListenerOnButton(); }
public void addListenerOnButton() {
button = (Button) findViewById(R.id.button);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://myanmarandroiddev.blogspot.com/?m=1"));startActivity(browserIntent);}});
အဆင္ေျပပါေစ။
ေရးသားသူ =ေဇယ်ာလင္း
အားလံုးျပီးလို႔runလိုက္တာဒီလိုပဲေပၚတယ္ဘာဆက္လုပ္ရမလဲ
ReplyDelete