SlideShare a Scribd company logo
1 of 3
The Java code 
package net.kerul.kirazakatemas; 
import android.os.Bundle; 
import android.app.Activity; 
import android.app.AlertDialog; 
import android.content.DialogInterface; 
import android.content.Intent; 
import android.view.Gravity; 
import android.view.Menu; 
import android.view.MenuItem; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.Button; 
import android.widget.EditText; 
import android.widget.ImageButton; 
import com.google.ads.AdRequest; 
import com.google.ads.AdView; 
public class KiraZakatEmas extends Activity implements OnClickListener { 
private AdView adView; 
private EditText txtberat, txtharga, txtnisab, txtnilai, txtkira; 
private Button btnkira; 
private ImageButton btninfo, btnshare; 
@Override 
protected void onCreate(Bundle savedInstanceState) { 
super.onCreate(savedInstanceState); 
setContentView(R.layout.activity_kira_zakat_emas); 
//UI 
txtberat=(EditText)findViewById(R.id.txtberatemas); 
txtberat.setGravity(Gravity.RIGHT); 
txtharga=(EditText)findViewById(R.id.txthargaemas); 
txtharga.setGravity(Gravity.RIGHT); 
txtnisab=(EditText)findViewById(R.id.txtnisab); 
txtnisab.setGravity(Gravity.RIGHT); 
txtnilai=(EditText)findViewById(R.id.txtnilai); 
txtnilai.setEnabled(false); 
txtnilai.setGravity(Gravity.RIGHT); 
txtkira=(EditText)findViewById(R.id.txtkira); 
txtkira.setEnabled(false); 
txtkira.setGravity(Gravity.RIGHT); 
//button 
btnkira=(Button)findViewById(R.id.btnkira); 
btnkira.setOnClickListener(this); 
btnshare=(ImageButton)findViewById(R.id.btnshare); 
btnshare.setOnClickListener(this); 
btninfo=(ImageButton)findViewById(R.id.btninfo); 
btninfo.setOnClickListener(this); 
//admob widget 
adView = (AdView)findViewById(R.id.ad); 
adView.loadAd(new AdRequest());
} 
@Override 
public boolean onCreateOptionsMenu(Menu menu) { 
// Inflate the menu; this adds items to the action bar if it is present. 
getMenuInflater().inflate(R.menu.activity_kira_zakat_emas, menu); 
return true; 
} 
public boolean onOptionsItemSelected(MenuItem item){ 
switch (item.getItemId()){ 
case R.id.mkongsi: 
invokesharing(); 
break; 
case R.id.minfo: 
displayinfo(); 
break; 
} 
return true; 
} 
@Override 
public void onClick(View arg0) { 
// TODO Auto-generated method stub 
double berat, harga, nilai, nisab, kira; 
if (arg0.getId()==R.id.btnkira){ 
if (txtberat.getText().toString().equals("")){ 
AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this); 
dlgAlert.setMessage("Sila masukkan berat emas (gram)"); 
dlgAlert.setTitle("Zakat Emas Kalkulator"); 
dlgAlert.setPositiveButton("Ok", 
new DialogInterface.OnClickListener() { 
public void onClick(DialogInterface dialog, int which) { 
//dismiss the dialog 
} 
}); 
dlgAlert.setCancelable(true); 
dlgAlert.create().show(); 
txtberat.requestFocus(); 
} 
else if (txtharga.getText().toString().equals("")){ 
AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this); 
dlgAlert.setMessage("Sila masukkan harga emas semasa(per gram)"); 
dlgAlert.setTitle("Zakat Emas Kalkulator"); 
dlgAlert.setPositiveButton("Ok", 
new DialogInterface.OnClickListener() { 
public void onClick(DialogInterface dialog, int which) { 
//dismiss the dialog 
} 
}); 
dlgAlert.setCancelable(true); 
dlgAlert.create().show(); 
txtharga.requestFocus(); 
}
else{ 
berat=Double.parseDouble(txtberat.getText().toString()); 
harga=Double.parseDouble(txtharga.getText().toString()); 
nisab=Double.parseDouble(txtnisab.getText().toString()); 
nilai=berat*harga; 
//nisab=txtnisab.getText().toString()); 
if(berat>85){//boleh dikena zakan 
kira=(berat-85)*harga*0.025; 
txtnilai.setText(String.valueOf(nilai)); 
txtkira.setText(String.valueOf(kira)); 
} 
else {//tak zakat 
txtnilai.setText(String.valueOf(nilai)); 
txtkira.setText("Tidak wajib zakat."); 
} 
} 
}//btnkira 
else if (arg0.getId()==R.id.btnshare){ 
invokesharing(); 
}//btnshare 
else if (arg0.getId()==R.id.btninfo){ 
displayinfo(); 
}//btnshare 
} 
public void displayinfo(){ //fucntion to display OK dialog box 
AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this); 
dlgAlert.setMessage("Dibangunkan oleh IT Zakat Pulau Pinang. " + 
"Maklumat lanjut http://zakatpenang.com"); 
dlgAlert.setTitle("Zakat Emas Kalkulator"); 
dlgAlert.setPositiveButton("Ok", 
new DialogInterface.OnClickListener() { 
public void onClick(DialogInterface dialog, int which) { 
//dismiss the dialog 
} 
}); 
dlgAlert.setCancelable(true); 
dlgAlert.create().show(); 
} 
public void invokesharing(){ //function to invoke sharing intent 
Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND); 
sharingIntent.setType("text/plain"); 
String shareBody = "Apps Taksir Zakat Emas muat turun di Google Store...n"; 
shareBody=shareBody+"http://zakatpenang.com #zakatkalkulator"; 
sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Apps Taksir Zakat 
Emas"); 
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody); 
startActivity(Intent.createChooser(sharingIntent, "Kongsikan melalui:")); 
} 
}

More Related Content

Featured

Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Applitools
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at WorkGetSmarter
 

Featured (20)

Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 

The java code

  • 1. The Java code package net.kerul.kirazakatemas; import android.os.Bundle; import android.app.Activity; import android.app.AlertDialog; import android.content.DialogInterface; import android.content.Intent; import android.view.Gravity; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; import android.widget.ImageButton; import com.google.ads.AdRequest; import com.google.ads.AdView; public class KiraZakatEmas extends Activity implements OnClickListener { private AdView adView; private EditText txtberat, txtharga, txtnisab, txtnilai, txtkira; private Button btnkira; private ImageButton btninfo, btnshare; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_kira_zakat_emas); //UI txtberat=(EditText)findViewById(R.id.txtberatemas); txtberat.setGravity(Gravity.RIGHT); txtharga=(EditText)findViewById(R.id.txthargaemas); txtharga.setGravity(Gravity.RIGHT); txtnisab=(EditText)findViewById(R.id.txtnisab); txtnisab.setGravity(Gravity.RIGHT); txtnilai=(EditText)findViewById(R.id.txtnilai); txtnilai.setEnabled(false); txtnilai.setGravity(Gravity.RIGHT); txtkira=(EditText)findViewById(R.id.txtkira); txtkira.setEnabled(false); txtkira.setGravity(Gravity.RIGHT); //button btnkira=(Button)findViewById(R.id.btnkira); btnkira.setOnClickListener(this); btnshare=(ImageButton)findViewById(R.id.btnshare); btnshare.setOnClickListener(this); btninfo=(ImageButton)findViewById(R.id.btninfo); btninfo.setOnClickListener(this); //admob widget adView = (AdView)findViewById(R.id.ad); adView.loadAd(new AdRequest());
  • 2. } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.activity_kira_zakat_emas, menu); return true; } public boolean onOptionsItemSelected(MenuItem item){ switch (item.getItemId()){ case R.id.mkongsi: invokesharing(); break; case R.id.minfo: displayinfo(); break; } return true; } @Override public void onClick(View arg0) { // TODO Auto-generated method stub double berat, harga, nilai, nisab, kira; if (arg0.getId()==R.id.btnkira){ if (txtberat.getText().toString().equals("")){ AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this); dlgAlert.setMessage("Sila masukkan berat emas (gram)"); dlgAlert.setTitle("Zakat Emas Kalkulator"); dlgAlert.setPositiveButton("Ok", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { //dismiss the dialog } }); dlgAlert.setCancelable(true); dlgAlert.create().show(); txtberat.requestFocus(); } else if (txtharga.getText().toString().equals("")){ AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this); dlgAlert.setMessage("Sila masukkan harga emas semasa(per gram)"); dlgAlert.setTitle("Zakat Emas Kalkulator"); dlgAlert.setPositiveButton("Ok", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { //dismiss the dialog } }); dlgAlert.setCancelable(true); dlgAlert.create().show(); txtharga.requestFocus(); }
  • 3. else{ berat=Double.parseDouble(txtberat.getText().toString()); harga=Double.parseDouble(txtharga.getText().toString()); nisab=Double.parseDouble(txtnisab.getText().toString()); nilai=berat*harga; //nisab=txtnisab.getText().toString()); if(berat>85){//boleh dikena zakan kira=(berat-85)*harga*0.025; txtnilai.setText(String.valueOf(nilai)); txtkira.setText(String.valueOf(kira)); } else {//tak zakat txtnilai.setText(String.valueOf(nilai)); txtkira.setText("Tidak wajib zakat."); } } }//btnkira else if (arg0.getId()==R.id.btnshare){ invokesharing(); }//btnshare else if (arg0.getId()==R.id.btninfo){ displayinfo(); }//btnshare } public void displayinfo(){ //fucntion to display OK dialog box AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this); dlgAlert.setMessage("Dibangunkan oleh IT Zakat Pulau Pinang. " + "Maklumat lanjut http://zakatpenang.com"); dlgAlert.setTitle("Zakat Emas Kalkulator"); dlgAlert.setPositiveButton("Ok", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { //dismiss the dialog } }); dlgAlert.setCancelable(true); dlgAlert.create().show(); } public void invokesharing(){ //function to invoke sharing intent Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND); sharingIntent.setType("text/plain"); String shareBody = "Apps Taksir Zakat Emas muat turun di Google Store...n"; shareBody=shareBody+"http://zakatpenang.com #zakatkalkulator"; sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Apps Taksir Zakat Emas"); sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody); startActivity(Intent.createChooser(sharingIntent, "Kongsikan melalui:")); } }