diff --git a/app/build.gradle b/app/build.gradle index b4d82367f9e1f8772c10b0b86f5f8eac62bb3b3b..89f87685536306b0412895095197d72caf2292d7 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -60,6 +60,7 @@ dependencies { implementation "com.android.support:design:$rootProject.supportLibraryVersion" implementation "com.android.support:support-vector-drawable:$rootProject.supportLibraryVersion" implementation "com.android.support:animated-vector-drawable:$rootProject.supportLibraryVersion" + implementation "com.android.support.constraint:constraint-layout:$rootProject.constraintLayoutVersion" // network implementation "com.amitshekhar.android:rx2-android-networking:$rootProject.rx2FastAndroidNetworking" diff --git a/app/src/main/res/layout/fragment_about.xml b/app/src/main/res/layout/fragment_about.xml index d7685e77974e9fc9f884190b217f2f756bfcad67..5875d153cebd729ffb1ba96671fad7a560206364 100644 --- a/app/src/main/res/layout/fragment_about.xml +++ b/app/src/main/res/layout/fragment_about.xml @@ -25,18 +25,21 @@ - + android:background="@color/black_effective"> + android:orientation="horizontal" + app:layout_constraintLeft_toLeftOf="parent" + app:layout_constraintRight_toRightOf="parent" + app:layout_constraintTop_toTopOf="parent"> + android:textSize="20sp" + app:layout_constraintLeft_toLeftOf="parent" + app:layout_constraintRight_toRightOf="parent" + app:layout_constraintTop_toBottomOf="@id/toolbar" /> + android:textColor="@color/white" + app:layout_constraintLeft_toLeftOf="parent" + app:layout_constraintRight_toRightOf="parent" + app:layout_constraintTop_toBottomOf="@id/txt_heading" /> + android:textColor="@color/white" + app:layout_constraintLeft_toLeftOf="parent" + app:layout_constraintRight_toRightOf="parent" + app:layout_constraintTop_toBottomOf="@id/tvMvpBlog" /> + android:textColor="@color/white" + app:layout_constraintLeft_toLeftOf="parent" + app:layout_constraintRight_toRightOf="parent" + app:layout_constraintTop_toBottomOf="@id/tvMvpRepo" /> - + android:textColor="@color/white" + app:layout_constraintLeft_toLeftOf="parent" + app:layout_constraintRight_toRightOf="parent" + app:layout_constraintTop_toBottomOf="@id/tvMindorksBlog" /> + \ No newline at end of file diff --git a/build.gradle b/build.gradle index 83a499b700739d0471cd9467e95b1cec8a1bc151..70be3a651d22acb919e6060b7f380ee882bd18c6 100644 --- a/build.gradle +++ b/build.gradle @@ -48,6 +48,7 @@ ext { targetSdkVersion = 28 compileSdkVersion = 28 buildToolsVersion = '28.0.3' + constraintLayoutVersion = '1.1.2' // App dependencies supportLibraryVersion = '28.0.0'