NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

package ecivas.app02;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.ProgressBar;
import android.widget.SeekBar;
import android.widget.Switch;
import android.widget.Toast;
import android.widget.ToggleButton;

public class MainActivity extends AppCompatActivity
{
// Viewların Değişkenlerini Oluştur
CheckBox cbSecim;
ToggleButton tbSecim;
Switch swSecim;
SeekBar sbSecim;
ProgressBar pbDurum;

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

cbSecim = (CheckBox) findViewById(R.id.cb);
tbSecim = (ToggleButton) findViewById(R.id.tb);
swSecim = (Switch) findViewById(R.id.sw);
sbSecim = (SeekBar) findViewById(R.id.sb);
pbDurum = (ProgressBar) findViewById(R.id.pb2);

cbSecim.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)
{
String mesaj = "";
if (isChecked == true) mesaj = "Sözleşme Kabul Edildi";
else mesaj = "Sözleşme Kabul Edilmedi";

Toast.makeText(MainActivity.this, mesaj, Toast.LENGTH_SHORT).show();
}
});


// SeekBar Listener
sbSecim.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
@Override
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser)
{

pbDurum.setProgress(progress);
Log.e("x","Secilen Sayi : "+progress+" / "+seekBar.getMax());
getSupportActionBar().setSubtitle(progress+" / "+seekBar.getMax());
}

@Override
public void onStartTrackingTouch(SeekBar seekBar) {
Log.e("x","Seekbar Basıldı");
}

@Override
public void onStopTrackingTouch(SeekBar seekBar) {
Log.e("x","SeekBar Bırakıldı");
getSupportActionBar().setSubtitle("");
}
});
}

public void degerleriOku(View view)
{
boolean isiklarAcikMi = tbSecim.isChecked();
boolean sozlesmeKabulEdildiMi = cbSecim.isChecked();
boolean wifiAcikMi = swSecim.isChecked();

int secilenSayi = sbSecim.getProgress();
// SeekBar Değerini Progress Bar'a Ata
pbDurum.setProgress(secilenSayi);
Log.e("x","Işıklar Açık Mı : "+isiklarAcikMi);
Log.e("x","Sozleşme Kabul Edildi Mi : "+sozlesmeKabulEdildiMi);
Log.e("x","Wifi Açık Mı : "+wifiAcikMi);
Log.e("x","Seçilen Sayı : "+secilenSayi);
}
}
     
 
what is notes.io
 

Notes.io is a web-based application for 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 12 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.