Android zugrif auf Thread nach Handy drehen.

Jw456

Top Contributor
Hallo welche Möglichkeit habe ich unter Android auf einen laufenden Thread zuzugreifen,
nachdem das Handy gedreht wurde?

Im Moment habe ich es über eine Klassenvariable (static Instanzvariable ) gelöst.

Beim drehen vom Handy wird ja die onCreate neu gestartet eigentlich sogar die Klasse neu erstellt.

Ich möchte es nicht mit static haben.
Wie Kann ich den noch laufenden Thread nach den Drehen aufrufen?

Eine klassische Instanzvariable ist ja nach dem drehen nicht mehr gültig.
Es muss also eine Möglichkeit geben wider an die Instanz des Threads zu kommen.

PS ich möchte keinen Service oder der gleichen benutzen es soll ein Thread bleiben.

Hier wie es momentan ist und auch geht.

Java:
public class MainActivity extends AppCompatActivity {
 
    static Thread t1;

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

     
        if (t1 == null) {
            t1 = new Thread(new MyThread());
            t1.start();
            Log.d("test","Thread wurde gestartet");
        }
    }

    public class MyThread implements Runnable {
        @Override
        public void run() {
            for (int i=0 ; i<100 ; i++) {
                Log.d("test","Thread läuft : "+ i);
                try {
                    sleep(1000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
             
            }
        }
    }

}

edit code berichtigt
 
Zuletzt bearbeitet:

Jw456

Top Contributor
Was meinst du mit „auf den Thread zugreifen“? Mit nem Thread kann man ja nicht allzu viel sinnvolles tun



Wenn es static ist, ist es keine Instanzvariable mehr :)
wenn dir die Begrifflichkeit Klassenvariable lieber ist ok.
Das ist ja nicht das Thema.



Ich möchte nach dem Handy drehen zb. Prüfen können ob der Thread noch läuft.
Mit static (KlassenVariablen) geht es klar.

Wenn es eine Instanzvariable ist nicht. Da wird auch der Thread nach dem Drehen neu gestartet da ja die Instanzvariable Null ist.

Ich möchte zb nach dem Handy drehen den Thread auch von außen beenden können dazu brauche ich aber die Instanz des Threads.
Die Instanzvariablen zeigt nach dem drehen nicht mehrer auf den Thread.

Wie finde ich die Instanz des Threads nach dem drehen.

Bzw. was muss oder kann ich dem Thread mit geben damit ich ihn finden kann?
und wie mache ich das?
 
K

kneitzel

Gast
Das ist immer das Gleiche: Du musst einfach die Daten an entsprechender Stelle merken.

Prinzipiell ist die static Lösung schon ok. Wenn Du es nicht als static haben willst, könntest Du es an einen Ort packen, der unverändert bleiben dürfte. Das wäre z.B. die Application Instanz, auf die Du per getApplication() zugreifen könntest.

Aber hier ist natürlich immer darauf zu achten, dass eine Applikation von Android jederzeit gekillt und dann wieder neu gestartet werden könnte. Daher nicht darauf verlassen, dass so Daten gesetzt sind.

Siehe z.B. http://www.developerphil.com/dont-store-data-in-the-application-object/
 

Jw456

Top Contributor
Das ist immer das Gleiche: Du musst einfach die Daten an entsprechender Stelle merken.

Prinzipiell ist die static Lösung schon ok. Wenn Du es nicht als static haben willst, könntest Du es an einen Ort packen, der unverändert bleiben dürfte. Das wäre z.B. die Application Instanz, auf die Du per getApplication() zugreifen könntest.

Aber hier ist natürlich immer darauf zu achten, dass eine Applikation von Android jederzeit gekillt und dann wieder neu gestartet werden könnte. Daher nicht darauf verlassen, dass so Daten gesetzt sind.

Siehe z.B. http://www.developerphil.com/dont-store-data-in-the-application-object/
Ja Singleton, ViewModle sind Möglichkeiten die ich nicht nutzen wollte.
Hatte gehofft hier eine bessere Lösung zu finden.

das mit dem getApplicationContext() und dem Thread einen namen geben könnte gehen.
nur wie genau würde ich nach dem namen suchen. Um an die Instanz zu kommen?

Na gut ich werde es bei Gelegenheit mal testen. Das war oder ist mehr eine prinzipielle Frage für mich.

Danke für die Antworten.
 
Zuletzt bearbeitet:

Jw456

Top Contributor
Die App und somit der Prozess wird ja nicht beendet.
Erst wenn der Prozess in dem die App läuft beendet wird würde ein noch laufender Thread beendet werden.
 

Barista

Top Contributor
Die App und somit der Prozess wird ja nicht beendet.
Erst wenn der Prozess in dem die App läuft beendet wird würde ein noch laufender Thread beendet werden.
Du hast recht, die Activity wird zerstört, nicht die App.


 

Jw456

Top Contributor
Du hast recht, die Activity wird zerstört, nicht die App.



Den link kenne ich. Das InstanceState hilft mir nicht, dort werden nur die Values der Variablen gespeichert nicht die Instanz.
 
Ähnliche Java Themen
  Titel Forum Antworten Datum
J Benachrichtigung Freigabe ab Android 14 Android & Cross-Platform Mobile Apps 1
J Android Benachrichtigung zum Zeitpunkt ers Android & Cross-Platform Mobile Apps 15
J Das Beispiel von Android erzeugt Fehler Android & Cross-Platform Mobile Apps 8
J Zeitdifferenzen unter Android 7 (API < 26) berechnen Android & Cross-Platform Mobile Apps 4
W Netzwerk Verbindungen Java Android Android & Cross-Platform Mobile Apps 107
Z Android IntelliJ Android & Cross-Platform Mobile Apps 2
M Repository bei Room-Database in Android Studio (Java) Android & Cross-Platform Mobile Apps 2
Android App auf das eigene Handy bekommen Android & Cross-Platform Mobile Apps 3
Alex IV Android App erstellen Android & Cross-Platform Mobile Apps 3
OnDemand CrossPlatform Kotlin iOs/Android Datenverbrauch Android & Cross-Platform Mobile Apps 2
W In Android Studio Integer an andere activities übergeben Android & Cross-Platform Mobile Apps 2
wladp Android Studio Room Database Android & Cross-Platform Mobile Apps 1
N "Schöne" Datatable in Android und setzen von Parametern von Textview im Code Android & Cross-Platform Mobile Apps 5
N Android game programmieren Android & Cross-Platform Mobile Apps 5
T Android Studio: Einen Button in einer For Schleife verwenden Android & Cross-Platform Mobile Apps 2
K BLE Komunikation mit Android studio und esp32 Android & Cross-Platform Mobile Apps 5
G Android UDP Kommunikation Android & Cross-Platform Mobile Apps 1
M Paper DB wird in Android Studio nicht erkannt Android & Cross-Platform Mobile Apps 7
T Android Android Augmented Faces in Java. Neue Landmarks erstellen Android & Cross-Platform Mobile Apps 1
K Android Android In-App-Purchase lädt nicht Android & Cross-Platform Mobile Apps 0
Besset Android http request an interne ip adresse funktioniert nicht Android & Cross-Platform Mobile Apps 8
J Is Android Development Head First Outdated? Android & Cross-Platform Mobile Apps 3
J Android Android Datenbankverbindung zum Raspberry Pi Android & Cross-Platform Mobile Apps 1
lolcore Android Studio -Download Documentation for Android SDK Android & Cross-Platform Mobile Apps 0
S Sinnvollste weg eine SQLite DB mit Android auslesen Android & Cross-Platform Mobile Apps 7
W Problem mit Android Studio Android & Cross-Platform Mobile Apps 0
W App Abo Android Android & Cross-Platform Mobile Apps 10
OSchriever Android Android MediaPlayer bei Anruf stoppen/pausieren Android & Cross-Platform Mobile Apps 2
OSchriever Auf onClick-Listener reagieren und Parameter übergeben (Android Studio) Android & Cross-Platform Mobile Apps 4
W removeNetwork Android App mit Spendenaktion fürs Tierheim! Android & Cross-Platform Mobile Apps 1
T Android R.string.test+i Problem Android & Cross-Platform Mobile Apps 2
P undefinierbarer Fehler Android Android & Cross-Platform Mobile Apps 8
T Android ArrayList sortieren mit 2 Werten ohne thencomparing , Wie? Android & Cross-Platform Mobile Apps 10
W Variable überschreiben (Android Studio) Android & Cross-Platform Mobile Apps 2
ruutaiokwu Android Selbst entwickelter SMTP-Client läuft auf PC, nicht aber auf Android Android & Cross-Platform Mobile Apps 9
ruutaiokwu Android Warum muss man bei Android Studio immer 2x auf "Run" klicken damit die App auf dem Gerät startet Android & Cross-Platform Mobile Apps 8
ruutaiokwu Android Wo das 'android.useAndroidX' property hinzufügen? Android & Cross-Platform Mobile Apps 8
ruutaiokwu Android In einem Android-“Spinner”-Element GLEICHZEITIG Bild (links) UND Text (rechts) anzeigen Android & Cross-Platform Mobile Apps 0
P Login und Registrierung Android Anzeige Android & Cross-Platform Mobile Apps 7
S Von JavaFx zu Android Android & Cross-Platform Mobile Apps 12
K Android to Pi | Websocket Problem Android & Cross-Platform Mobile Apps 3
ruutaiokwu Wie fügt man bei Android Studio .jar-Libraries zu einem Android-Java-Projekt hinzu? Android & Cross-Platform Mobile Apps 33
M Komponenten positionieren in Android Studio 3.6.3 Android & Cross-Platform Mobile Apps 1
M Android Studio - Property-Fenster einblenden Android & Cross-Platform Mobile Apps 1
M Android Studio - App auf dem Smartphone testen Android & Cross-Platform Mobile Apps 7
M Barrierefreie Appentwicklung für Android - Suche Codebeispiele Android & Cross-Platform Mobile Apps 8
M Android Studio - Configuration fehlt Android & Cross-Platform Mobile Apps 20
M Wo kann ich das Android SDK herunterladen / wie kann ich es installieren Android & Cross-Platform Mobile Apps 3
M Unsupported class file major version 57 - Fehlermeldung bei Android Studio Android & Cross-Platform Mobile Apps 27
ruutaiokwu Android Studio (SDK) ANDROID_SDK_ROOT-Variable? Android & Cross-Platform Mobile Apps 5
O Web API in Android (JAVA) einbinden Android & Cross-Platform Mobile Apps 3
J Android Studio macht seltsame Sachen Android & Cross-Platform Mobile Apps 2
J Android 9.1 aber android Studio findet API22 Android & Cross-Platform Mobile Apps 0
Dimax Web-Seite in native app convertieren mit Android Studio Android & Cross-Platform Mobile Apps 8
A Android Studio: while-Schleife beginnt nicht Android & Cross-Platform Mobile Apps 5
lolcore android studio: fehler bei laden des emulators Android & Cross-Platform Mobile Apps 10
J Android App - Browser öffnen und Text eingeben/Button click auslösen Android & Cross-Platform Mobile Apps 10
A Android-Studio: 2. Layout nach kurzer Zeit aufzeigen Android & Cross-Platform Mobile Apps 2
A jpg wird im Android Studio nicht akzeptiert Android & Cross-Platform Mobile Apps 3
J Android Studio - ArrayList - Selected Item ermitteln Android & Cross-Platform Mobile Apps 13
T Android SDK-Manager startet nicht in Eclipse Android & Cross-Platform Mobile Apps 5
T Bringen mir die Java-Basics irgendetwas für die Android-Programmierung Android & Cross-Platform Mobile Apps 4
J Was soll das bedeuten ? does not require android.permission.BIND_JOB_SERVICE permission Android & Cross-Platform Mobile Apps 7
A Android Studio: ImageView verpixelt Android & Cross-Platform Mobile Apps 2
J intend Service im Android Studio Android & Cross-Platform Mobile Apps 4
L Android Android Development eventuell mit Flutter Android & Cross-Platform Mobile Apps 1
S Android Layout - welchen Typ? Android & Cross-Platform Mobile Apps 3
T Fehler Android Studio: java.net.MalformedURLException: no protocol: http%3A%2F%2Fwww.mal ..... Android & Cross-Platform Mobile Apps 2
Arif Android Android Studio: Fehler beim Einbinden fremder Bibliothek? Android & Cross-Platform Mobile Apps 2
L Android Android Contacts DB auslesen Android & Cross-Platform Mobile Apps 1
A Android Studio - App mit Nearby Android & Cross-Platform Mobile Apps 1
L Android content URI Datei einlesen Android & Cross-Platform Mobile Apps 9
N Android Game Background Service Android & Cross-Platform Mobile Apps 11
Jackii Android Android Studio Error im Testlauf ohne zu programmieren Android & Cross-Platform Mobile Apps 9
B Android Probleme mit Android Studio Android & Cross-Platform Mobile Apps 6
Excess Android Service läuft nicht in Sandby weiter Android & Cross-Platform Mobile Apps 2
B Android Projekt für Android und IOS erstellen? Android & Cross-Platform Mobile Apps 5
J App funktioniert auf Android 5, auf 6 nicht Android & Cross-Platform Mobile Apps 2
J Android Snake Android & Cross-Platform Mobile Apps 15
J Android TaschenRechner Android & Cross-Platform Mobile Apps 22
I Das Problem mit der Tastatur... android:windowSoftInputMode="adjustPan" Android & Cross-Platform Mobile Apps 1
E Wie erhalte ich Zugriff auf das Microfon? (Android Studio) Android & Cross-Platform Mobile Apps 9
C Android Programmierung speziell oder einfach Java Buch kaufen? Android & Cross-Platform Mobile Apps 3
B Android Kein Zugriff auf Telefonspeicher (Android 6) Android & Cross-Platform Mobile Apps 1
T Android Equalizer für Android Android & Cross-Platform Mobile Apps 3
L Android Android Studio - Exportierte APK funktioniert nicht Android & Cross-Platform Mobile Apps 6
L Android Methode funktioniert nicht unter Android Android & Cross-Platform Mobile Apps 3
A Beginnen mit Serverkommunikatsion in Android Studio Android & Cross-Platform Mobile Apps 6
E Android Studio Android & Cross-Platform Mobile Apps 15
L Android Android Studio Setup killt Explorer Android & Cross-Platform Mobile Apps 3
K Android Videos rendern Android & Cross-Platform Mobile Apps 1
J Variable in strings.xml (Android Studio) Android & Cross-Platform Mobile Apps 0
B Android Android Studio lässt PC abstürzen Android & Cross-Platform Mobile Apps 3
B Android App Fehler Android & Cross-Platform Mobile Apps 21
J android Spinner funktioniert nicht Android & Cross-Platform Mobile Apps 14
G Android Push Notification Android & Cross-Platform Mobile Apps 2
Light Lux Fehlermeldung unter Android Studio Android & Cross-Platform Mobile Apps 1
D Android Android Apps direkt vom Handy aus programmieren? Android & Cross-Platform Mobile Apps 2
L Android Android Kalendar Tag Ansicht Android & Cross-Platform Mobile Apps 1
J Android Java Packet in Android Java ide hinzufügen. Android & Cross-Platform Mobile Apps 3

Ähnliche Java Themen

Neue Themen


Oben