Suchergebnisse

Es gibt eine Seite, die den Namen „Activity“ in Android Wiki hat. Weitere Suchergebnisse.

Zeige (vorherige 20 | ) (20 | 50 | 100 | 250 | 500)
  • für Texte. Technisch betrachtet ist eine Activity eine Instanz der Klasse android.app.Activity. Jede Activity der App muss in der Manifest-Datei der App…
    1 KB (133 Wörter) - 18:48, 25. Mai 2022
  • [--activity-multiple-task] [--activity-no-animation] [--activity-no-history] [--activity-no-user-action] [--activity-previous-is-top] [--activity-reorder-to-front]…
    12 KB (1.567 Wörter) - 15:21, 11. Feb. 2015
  • Vererbung u.a. auch in der Klasse android.app.Activity zur Verfügung, so dass aus einer Activity zu einer anderen Activity "gesprungen" werden kann. Im Gegensatz…
    6 KB (697 Wörter) - 13:01, 1. Jul. 2019
  • </intent-filter> </activity> <activity android:name="de.einefirma.beispiel.hilfe_activity" android:label="@string/title_activity_hilfe" > </activity> </application>…
    5 KB (535 Wörter) - 09:27, 7. Sep. 2018
  • callback methods. Starting an Activity Pausing and Resuming an Activity Stopping and Restarting an Activity Recreating an Activity Building a Dynamic UI with…
    1.006 Bytes (140 Wörter) - 04:36, 18. Dez. 2015
  • Fragment ist ein wiederverwendbarer Baustein für eine Bildschirmseite (Activity) einer Android-App. Fragmente wurden mit der Android-Version 3000!3.0 Honeycomb…
    2 KB (143 Wörter) - 01:07, 5. Nov. 2017
  • [--activity-multiple-task] [--activity-no-animation] [--activity-no-history] [--activity-no-user-action] [--activity-previous-is-top] [--activity-reorder-to-front]…
    21 KB (2.674 Wörter) - 20:03, 17. Okt. 2021
  • Under Add an activity to <template>, select Blank Activity and click Next. Under Choose options for your new file, change the Activity Name to MyActivity…
    9 KB (1.273 Wörter) - 21:49, 30. Dez. 2015
  • darauf verzichtet werden, die APK-Datei neu zu erstellen und die App oder Activity auf einer Emulator-Instanz oder einen angeschlossenen Android-Gerät neu…
    6 KB (665 Wörter) - 14:49, 26. Okt. 2017
  • benötigt. Android überwacht das Reaktionsverhalten durch die System-Dienste Activity Manager und Window Manager. Ein ANR-Dialog wird angezeigt, wenn eine der…
    6 KB (602 Wörter) - 17:36, 20. Mai 2017
  • consume system resources when your activity doesn't need them. Starting an Activity Learn the basics about the activity lifecycle, how the user can launch…
    3 KB (352 Wörter) - 20:59, 9. Feb. 2016
  • consume system resources when your activity doesn't need them. Starting an Activity Learn the basics about the activity lifecycle, how the user can launch…
    2 KB (352 Wörter) - 21:13, 9. Feb. 2016
  • consume system resources when your activity doesn't need them. Starting an Activity Learn the basics about the activity lifecycle, how the user can launch…
    2 KB (353 Wörter) - 16:35, 8. Mai 2016
  • right-click, and select New > Activity > Blank Activity. In the Choose options window, fill in the activity details: Activity Name: DisplayMessageActivity…
    17 KB (1.791 Wörter) - 21:27, 20. Dez. 2015
  • right-click, and select New > Activity > Blank Activity. In the Choose options window, fill in the activity details: Activity Name: DisplayMessageActivity…
    17 KB (1.791 Wörter) - 21:27, 20. Dez. 2015
  • right-click, and select New > Activity > Blank Activity. In the Choose options window, fill in the activity details: Activity Name: DisplayMessageActivity…
    17 KB (1.795 Wörter) - 21:27, 20. Dez. 2015
  • callback methods. Starting an Activity Pausing and Resuming an Activity Stopping and Restarting an Activity Recreating an Activity Building a Dynamic UI with…
    889 Bytes (140 Wörter) - 04:42, 18. Dez. 2015
  • callback methods. Starting an Activity Pausing and Resuming an Activity Stopping and Restarting an Activity Recreating an Activity Ein dynamisches UI mit Fragmenten…
    963 Bytes (139 Wörter) - 23:26, 18. Dez. 2015
  • directory, open the activity_my.xml file. The BlankActivity template you chose when you created this project includes the activity_my.xml file with a RelativeLayout…
    14 KB (1.783 Wörter) - 19:23, 18. Dez. 2015
  • directory, open the activity_my.xml file. The BlankActivity template you chose when you created this project includes the activity_my.xml file with a RelativeLayout…
    15 KB (1.783 Wörter) - 19:23, 18. Dez. 2015
Zeige (vorherige 20 | ) (20 | 50 | 100 | 250 | 500)
Activity
Eine Activity repräsentiert eine Bildschirm-Seite (Screen) in einer Android-App. Eine App besteht typischerweise aus mehreren Activities. Diese enthalten die GUI-Elemente wie z.B. Buttons, Listen oder Eingabefelder für Texte. Technisch betrachtet ist eine Activity eine Instanz der Klasse android.app.Activity. Jede Activity der App muss in der Manifest-Datei der App deklariert sein. Die Oberfläche einer Activity kann entwender durch Laden einer Layout…