Skip to content

Instantly share code, notes, and snippets.

@graffiti75
Created August 4, 2021 18:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save graffiti75/7a136eb14cb41438218b99c1ca3267ea to your computer and use it in GitHub Desktop.
Save graffiti75/7a136eb14cb41438218b99c1ca3267ea to your computer and use it in GitHub Desktop.
Tour Guide App - 3079590 - Fixing unnecessary blank lines in the code
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fillViewport="false">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/linearLayout">
<TextView
android:id="@+id/Overskrift"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Rundemannen"
android:textSize="30sp"
android:textStyle="bold"/>
<TextView
android:id="@+id/Floibanentekst"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/Rundemannen"
android:textSize="20sp"
android:layout_marginTop="20dp"
android:layout_marginBottom="20dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"/>
</LinearLayout>
</ScrollView>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment