Android Layout Flashcards

1
Q

Wie wird das XML Format spezifiziert?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Wie wird das XML Format spezifiziert?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Wie wird das Android Name Schema definiert?

A

xmlns:android=”https://schemas.android.com/apk/res/android””

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Definiere eine Höhe eines Elements von 24dp?

A

android:layout_height=”24dp”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Wie wird das Tools Name Schema definiert?

A

xmlns:tools=”http://schemas.android.com/tools”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Mit welchem Attribut wird bei der Texteingabe angegeben, dass nur Zahlen eingegeben werden können?

A

android:inputType=”number

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Mit welchem Attribute kann ein Image zu einem Button am Anfang hinzugefügt werden?

A

android:drawableStart=”@drawable/myimage”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Wie wird ViewBinding in der build.gradle angeschaltet?

A
android {
    ...
    buildFeatures {
        viewBinding true
    }
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Definiere ein Menu mit einem Eintrag mit einem Icon und einem Label, welcher immer im Hauptbereich angezeigt werden soll.

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Mit welcher Zeile wird einer Activity ein Menu hinzugefügt?

A

menuInflater.inflate(R.menu.menu_toolbar, menu)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Wie heißt die Methode, in der ein Menü einer Activity hinzugefügt wird?

A

onCreateOptionsMenu

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

In welcher Methode wird auf Klicks im Menu der Toolbar reagiert?

A

onOptionsItemSelected

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Wie heißt die Extension function, um den NavController in der Activity zu erhalten?

A

findNavController

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Wie heißt die Extension function von MenuItem, um mittels des NavControllers als Übergabeparamater zu einem Ziel zu springen?

A

onNavDestinationSelected

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Erzeuge eine AppBarConfiguration und füge diese gemeinsam mit einem NavController der Toolbar hinzu

A

val navController = findNavController(R.id.nav_host_fragment)
val appBarConfiguration= AppBarConfiguration.Builder(navController.graph).build()
toolbar.setupWithNavController(navController, appBarConfiguration)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly