Compare commits

..

No commits in common. "d80bb2416413bcdbc6d3cef2d94e7cbb20b11165" and "f6e720805d4f6a5bea8f80641391539dc785d8ed" have entirely different histories.

2 changed files with 3 additions and 4 deletions

View File

@ -20,6 +20,5 @@ public class MainActivity extends AppCompatActivity {
v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom);
return insets;
});
//adicionei código aqui
}
}

View File

@ -7,13 +7,13 @@
android:layout_height="match_parent"
tools:context=".MainActivity">
<Button
android:id="@+id/button"
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>