"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="Add" />
<ConfirmationsSetting value="0" id="Remove" /> <ConfirmationsSetting value="0" id="Remove" />
</component> </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" /> <output url="file://$PROJECT_DIR$/build/classes" />
</component> </component>
<component name="ProjectType"> <component name="ProjectType">

View File

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

View File

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