Browse Source

Updated activity_splash.xml from LinearLayout to AndroidX ConstraintLayout

dev
jahway603 4 years ago
parent
commit
07af261709
  1. 4
      README.md
  2. 11
      app/src/main/res/layout/activity_splash.xml

4
README.md

@ -7,7 +7,7 @@ SilentDragon Android is an Android frontend for the desktop SilentDragon that le
## When will it be in my favorite app store?
The application is already available on the Google Play store here:
https://play.google.com/store/apps/details?id=org.myhush.silentdragon&hl=fr
https://play.google.com/store/apps/details?id=org.myhush.silentdragon
### Running SilentDragon
@ -114,7 +114,7 @@ This build can be directly uploaded to Google Play.
### Building a release APK for F-Droid
We should do this!
We should do this & will plan to using [this](https://gitlab.com/fdroid/fdroiddata/blob/master/CONTRIBUTING.md)
...

11
app/src/main/res/layout/activity_splash.xml

@ -1,7 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/splashLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black">
@ -10,6 +11,8 @@
android:id="@+id/splashImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/silentdragon_animated_startup_dark"/>
android:src="@drawable/silentdragon_animated_startup_dark"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

Loading…
Cancel
Save