cleint server 9
aplikasi android dengan judul :
info kost
menambahkan xml pesan :
kodingnya :
package com.example.aplikasi_android;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
public class Kost_mewah extends Activity {
Button pesan;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_kost_mewah);
Button button = (Button)findViewById(R.id.buttonpsn);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
Intent intent = new Intent(Kost_mewah.this,Pelanggan.class);
startActivity(intent);
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.kost_mewah, menu);
return true;
}
}
Komentar
Posting Komentar