Son Forum Aktiviteleri

32
Tümünü Gör

Kullanıcıya ait forum aktivitesi bulunmamaktadır.

Kullanıcının birden fazla edittext e yazdığı yazıyı tek bir butonla kaydetmesini istiyorum

Merhaba,

Shared Preferences kullanarak amaçladığınız şeyi yapabilirsiniz.

Verilerinizi kaydetmek için aşağıdaki örnekten yararlanabilirsiniz

SharedPreferences sharedPref = getSharedPreferences("PrefFileKey", Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPref.edit();
editor.putString("Param1", "FirstText");
editor.putString("Param2", "SecondText");
editor.putString("Param3", "ThirdText");
editor.commit();

Daha önceden kaydetmiş olduğunuz verilere erişmek için

SharedPreferences sharedPref = getSharedPreferences("PrefFileKey", Context.MODE_PRIVATE);
String param1 = sharedPref.getString("Param1", "");
String param2 = sharedPref.getString("Param2", "");
String param3 = sharedPref.getString("Param3", "");

 

How do I eliminate AOL desktop gold error code 104?

08 Temmuz 2020 tarihinde cevaplandı

Unfortunately there is no solid solution to fix it permanently.

The reason could be;

- Download of corrupt AOL Desktop Gold Files in the computer.

- When you have the corrupt windows registry system installed on the computer.

- When you’re PC has the presence of viruses and malware.

- One of the main reason behind this problem is the incomplete download file of AOL Desktop Gold software.

Please try to remove AOL Desktop and install the latest version of it. This is the best way to fix your AOL Desktop gold error that i know.

I hope this helps.

">

expected primary-expression before '.' token

Merhaba,

Kullandığınız objenin ismi 'DHT11', fakat siz 'DHT' yazmışsınız. Aşağıdaki şekilde düzeltirseniz sorununuz çözülecektir.

chk = DHT11.read();

Ayrıca yanlış hatırlamıyorsam 'read()' fonksiyonu parametre alıyor. Örnek olarak:

chk = DHT11.read(DHT11PIN);