Changes

Jump to: navigation, search

Build App with Android-Studio

704 bytes added, 15:56, 13 September 2019
Splash Screen
Dabei entstehen zwei Dateien: Java und xml
'''activity_splashactivity.xml'''
<pre>
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
tools:context=".splashactivity">
 
<ImageView
android:layout_width="200dp"
android:layout_height="200dp"
android:src="@drawable/myLogo"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:id="@+id/myLogo"
/>
 
</RelativeLayout>
</pre>
<br>

Navigation menu