Compare commits

..

2 Commits

3 changed files with 22 additions and 16 deletions

View File

@ -1,46 +1,49 @@
<?xml version="1.0" encoding="utf-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" xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
tools:context=".MainActivity" tools:context=".MainActivity">
android:orientation="vertical">
<com.google.android.material.appbar.AppBarLayout <com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:theme="@style/Theme.MyWeather.AppBarOverlay"> android:theme="@style/Theme.MyWeather.AppBarOverlay"
app:layout_constraintBottom_toTopOf="parent">
</com.google.android.material.appbar.AppBarLayout> </com.google.android.material.appbar.AppBarLayout>
<ImageView <ImageView
android:id="@+id/imageView" android:id="@+id/imageView"
android:layout_width="match_parent" android:layout_width="388dp"
android:layout_height="530dp" android:layout_height="461dp"
app:layout_constraintBottom_toTopOf="@+id/textView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:srcCompat="@drawable/ic_baseline_umbrella_24" /> app:srcCompat="@drawable/ic_baseline_umbrella_24" />
<TextView <TextView
android:id="@+id/textView" android:id="@+id/textView"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="51dp" android:layout_height="51dp"
android:textSize="20sp"
android:gravity="center" android:gravity="center"
android:layout_marginRight="10dp" android:text="@string/firstAction"
android:layout_marginLeft="10dp" android:textSize="20sp"
android:text="Please click on the 'Add' button in order to add a city" app:layout_constraintBottom_toTopOf="@+id/fab"
tools:layout_editor_absoluteX="89dp" tools:layout_editor_absoluteX="89dp" />
tools:layout_editor_absoluteY="566dp" />
<com.google.android.material.floatingactionbutton.FloatingActionButton <com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab" android:id="@+id/fab"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_gravity="bottom|end" android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin" android:layout_margin="@dimen/fab_margin"
android:layout_marginRight="10dp" android:layout_marginEnd="10dp"
app:backgroundTint="#FF0202" app:backgroundTint="#FF0202"
app:rippleColor="#FFFFFF" app:rippleColor="#FFFFFF"
app:srcCompat="@android:drawable/ic_input_add" /> app:srcCompat="@android:drawable/ic_input_add"/>
</LinearLayout> </androidx.constraintlayout.widget.ConstraintLayout>

View File

@ -10,4 +10,8 @@
<string name="hello_first_fragment">Hello first fragment</string> <string name="hello_first_fragment">Hello first fragment</string>
<string name="hello_second_fragment">Hello second fragment. Arg: %1$s</string> <string name="hello_second_fragment">Hello second fragment. Arg: %1$s</string>
<string name="title_activity_main2">MainActivity</string> <string name="title_activity_main2">MainActivity</string>
<string name="title_activity_test_constraint_layout">TestConstraintLayout</string>
<string name="firstAction">Please click on the Add button in order to add a city</string>
</resources> </resources>

View File

@ -6,7 +6,6 @@ buildscript {
} }
dependencies { dependencies {
classpath "com.android.tools.build:gradle:4.1.0" classpath "com.android.tools.build:gradle:4.1.0"
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files // in the individual module build.gradle files
} }