"version change and fix constraints on textview"

This commit is contained in:
lordwelch 2017-04-01 21:02:28 -06:00
parent e642221b07
commit a02c1aa23c
3 changed files with 17 additions and 7 deletions

2
.idea/misc.xml generated
View File

@ -37,7 +37,7 @@
<ConfirmationsSetting value="0" id="Add" />
<ConfirmationsSetting value="0" id="Remove" />
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" default="true" assert-keyword="true" jdk-15="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" assert-keyword="true" jdk-15="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
<component name="ProjectType">

View File

@ -15,9 +15,9 @@ android {
applicationId "com.welchsoftwaredevelopers.myapplication"
minSdkVersion 21
targetSdkVersion 25
versionCode 1
versionName "1.0"
versionName '1.1'
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
versionCode 2
}
buildTypes {
release {
@ -29,6 +29,8 @@ android {
signingConfig signingConfigs.config
}
}
productFlavors {
}
}
dependencies {

View File

@ -20,7 +20,9 @@
android:layout_marginRight="8dp"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginTop="100dp"
app:layout_constraintTop_toBottomOf="@+id/textView_Total" />
app:layout_constraintTop_toBottomOf="@+id/textView_Total"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp" />
<TextView
android:id="@+id/textView_Total"
@ -29,8 +31,12 @@
android:text="hello"
android:textAlignment="viewEnd"
android:textColor="@android:color/black"
tools:layout_editor_absoluteY="8dp"
tools:layout_editor_absoluteX="8dp" />
app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="8dp"
android:layout_marginRight="8dp"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginLeft="8dp"
app:layout_constraintLeft_toLeftOf="parent" />
<Button
android:id="@+id/button4"
@ -43,5 +49,7 @@
android:layout_marginRight="8dp"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginLeft="8dp"
app:layout_constraintLeft_toLeftOf="parent" />
app:layout_constraintLeft_toLeftOf="parent"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp" />
</android.support.constraint.ConstraintLayout>