+ - 0:00:00
Notes for current slide
Notes for next slide

Calaix de sastre

Mateu Yábar

1 / 9

Activity amb un únic fragment

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_with_one_fragment);
if(savedInstanceState == null) {
Fragment fragment = new MyFragment();
getSupportFragmentManager().beginTransaction().replace(R.id.container, fragment).commit();
}
}
2 / 9

Manifest

  • manifest.xml
  • Informació general de l'aplicació
    • package*
    • versionCode*
    • versionName*
    • icon
    • label
    • theme

* definits al gradle

3 / 9

Manifest

  • Llista de
    • activity
    • service
    • receiver
    • provider
  • permisos
  • (...)
4 / 9

Manifest - Activity

  • name
  • label*
  • screenOrientation*
  • theme*
<activity
android:name=".MainActivity"
android:label="@string/some_label"
android:screenOrientation="portrait"
android:theme="@style/materialTheme">
</activity>

*opcionals

5 / 9

Manifest - Activity

  • Intents
    • Permeten definir una activitat com a punt d'entrada
      • Al iniciar l'applicació
      • Obrir una url
      • Llegir un tag NFC

Activity inici

<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
6 / 9

Icona adaptativa

7 / 9

Exàmen 17-12-2019 - UF1

  • Diseny del layout (xml)
    • Constraint layout
    • Material buttons
  • Fitxers de recursos
    • string.xml, styles.xml, etc.
  • Interacció amb el layout: clicks i modificació de valors
  • RecyclerView
  • Arquitectura
  • Navegació
    • usant arguments
  • LiveData
8 / 9

Exàmen 17-12-2019

UF2

  • Creació de tests d'interfície gràfica
9 / 9

Activity amb un únic fragment

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_with_one_fragment);
if(savedInstanceState == null) {
Fragment fragment = new MyFragment();
getSupportFragmentManager().beginTransaction().replace(R.id.container, fragment).commit();
}
}
2 / 9
Paused

Help

Keyboard shortcuts

, , Pg Up, k Go to previous slide
, , Pg Dn, Space, j Go to next slide
Home Go to first slide
End Go to last slide
Number + Return Go to specific slide
b / m / f Toggle blackout / mirrored / fullscreen mode
c Clone slideshow
p Toggle presenter mode
t Restart the presentation timer
?, h Toggle this help
Esc Back to slideshow