Dynamische View Inhalt -> Lagesensor

Generic1

Top Contributor
Hallo,

in meiner Android- App hole ich mir z.B.: eine Image auf das Handy und zeige dieses an.
Wenn ich dann das Smartphone drehe, dann ist das Image wieder weg,
Meine Frage wäre jetzt, wie ich es machen kann, dass das Image auch dann am Bildschirm bleibt, wenn ich das Smartphone drehe?

vielen Dank,
lg
 

mjdv

Bekanntes Mitglied
Die Frage ist, wie genau machst du das? Bisschen Code.

Generell kann man den Zusatnd einer Activity speichern. Beim drehen wird die Activity beendet und wieder onCreate aufgerufen.

Speichern kann zb mit:

Java:
@Override
public void onSaveInstanceState(Bundle outState) {
outState.putString("key", "inhalt");
}
 
Ähnliche Java Themen
  Titel Forum Antworten Datum
S Dynamische EditText View eingaben in Datenbank speichern Android & Cross-Platform Mobile Apps 0
L Android Wie erstelle ich eine dynamische Tabelle (TableLayout)? Android & Cross-Platform Mobile Apps 2
M Android Dynamische SchriftGröße einer TextView Android & Cross-Platform Mobile Apps 3
? dynamische Inhalte Android & Cross-Platform Mobile Apps 3
D Android dynamische Buttons positionieren Android & Cross-Platform Mobile Apps 1
K Dynamische (Image)Buttons, Größe bestimmen Android & Cross-Platform Mobile Apps 4
R Android Zugriff auf view von MainActivity Android & Cross-Platform Mobile Apps 7
W Zur Laufzeit erstelltes MenuItem an eine View binden Android & Cross-Platform Mobile Apps 1
W Bild aus dem Internet in View bzw. ImageView laden (Fragment) Android & Cross-Platform Mobile Apps 2
J View Breite/Höhe bestimmen Android & Cross-Platform Mobile Apps 4
B Android In einem View der ersten Activity zweite anzeigen Android & Cross-Platform Mobile Apps 2
V PopUp in gleicher View anzeigen Android & Cross-Platform Mobile Apps 1
M Android Suche Activity/View Namen Android & Cross-Platform Mobile Apps 1
R Android Warum (View view)? Android & Cross-Platform Mobile Apps 4
J Android neue View mit OnTouchListener Android & Cross-Platform Mobile Apps 0
B Eigene View xml-Layout einbinden Android & Cross-Platform Mobile Apps 1
R Problem mit View in ScrollView Android & Cross-Platform Mobile Apps 6
R Android Android.view Serializable ? Android & Cross-Platform Mobile Apps 3
M Android View zu View hinzufügen Android & Cross-Platform Mobile Apps 4
M Activity wechseln aus List View mit Android & Cross-Platform Mobile Apps 2
M Suche Name von View Komponente Android & Cross-Platform Mobile Apps 10
G canvas in view anzeigen Android & Cross-Platform Mobile Apps 10
G Fehlermeldung: "No XML content. Please add a root view or layout to your documet." Android & Cross-Platform Mobile Apps 7
E Android View zur Laufzeit hinzufügen Android & Cross-Platform Mobile Apps 4
N neuen view öffnen Android & Cross-Platform Mobile Apps 13
J id's von view komponenten werden nicht gefunden Android & Cross-Platform Mobile Apps 2
C Panel/View für Android Android & Cross-Platform Mobile Apps 3
tfa Android Layout-Probleme: View programmatisch erweitern (addContentView) Android & Cross-Platform Mobile Apps 7
W Gezielte Ausgabe von abgefragten Inhalt aus Datenbank Android & Cross-Platform Mobile Apps 1
M Inhalt eines Eingabefeldes an einen Server senden? Android & Cross-Platform Mobile Apps 9
B Inhalt von StringBuffer in Textdatei speichern? Android & Cross-Platform Mobile Apps 6
F Android Spinner zur Laufzeit mit verschiedenem Inhalt füllen Android & Cross-Platform Mobile Apps 2

Ähnliche Java Themen

Neue Themen


Oben