NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

package tt.actionbarornek;

import android.content.Intent;
import android.net.Uri;
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity
{
// Support v7 Altindaki ActionBar Kullanilmali
ActionBar ab;
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

// ActionBar'a Ulas
ab = getSupportActionBar();
// ActionBar Başlığı Değiştir
ab.setTitle("My App Title");
// Alt Metni Değiştir
ab.setSubtitle("Subtitle Text");
}

// Uygulamaya Menu Seçenekleri Eklemek İçin : onCreateOptionsMenu
public boolean onCreateOptionsMenu(Menu menu)
{
// ActionBar'a Android Framework'undeki Pusula Simglesiyle,
// Yardım Adında Bir Seçenek Eklemek İçin
menu.add("Yardım")
.setIcon(android.R.drawable.ic_menu_compass)
// Show As Action Always, ActionBarda Simgeyi Her Zaman Gosterir
.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);
// SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW
// Üç Noktalı Menu Altında, Simgeyi Seçenek Olarak Gösterir

// Alt Menu Olusturmak
Menu altMenu = menu.addSubMenu("Diğer");
altMenu.add("Seçenek 1");
altMenu.add("Seçenek 2");


// Eğer bu method, false dönerse, uygulamada menu oluşturulmuyor
return super.onCreateOptionsMenu(menu);
}

// Menuden Bir Seçenek Seçildiğinde, Yapılacak İşlem İçin : onOptionsItemSelected
public boolean onOptionsItemSelected(MenuItem item)
{
// Seçilen Item'in Adını Al
String ad = item.getTitle().toString();

if (ad.equals("Yardım"))
{
Toast.makeText(MainActivity.this,"Yardım",Toast.LENGTH_SHORT).show();

// IMPLICIT INTENT
// Bir Web Sayfası Açma Intentii..
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.yahoo.com"));
startActivity(intent);
}
if (ad.equals("Seçenek 1"))
{
// 0532 251 8324' numarasını Çevir Ve Bekle
Toast.makeText(MainActivity.this,"1. Seçenek", Toast.LENGTH_SHORT).show();
Intent i = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:05322518324"));
startActivity(i);
}
if (ad.equals("Seçenek 2"))
{
Toast.makeText(MainActivity.this,"2. Seçenek", Toast.LENGTH_SHORT).show();

// Bu Uygulamadaki Ekran 2 Activity'sini Acan Intent
// Hangi Uygulama / Hangi Activity'nin Acilacagini Net Bir Sekilde
// Soyleyen Intentler : EXPLICIT INTENTS
Intent i = new Intent(MainActivity.this, Ekran2.class);
startActivity(i);
}
return super.onOptionsItemSelected(item);
}
}
     
 
what is notes.io
 

Notes is a web-based application for online taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000+ notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 14 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.