shape and linear layout

This commit is contained in:
2026-02-24 17:16:17 +00:00
parent b8cf93a7cb
commit d3288c3529
7 changed files with 34 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="@color/cinzaescuro"/>
<corners android:radius="15dp"/>
</shape>
</item>
</selector>

View File

@@ -328,6 +328,30 @@
</androidx.constraintlayout.widget.ConstraintLayout> </androidx.constraintlayout.widget.ConstraintLayout>
<LinearLayout
android:id="@+id/shapeLinearLayout"
android:layout_width="422dp"
android:layout_height="40dp"
android:layout_marginTop="32dp"
android:background="@drawable/linear_backgound"
android:orientation="horizontal"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/cardView4">
<ImageView
android:id="@+id/imageView"
android:layout_width="82dp"
android:layout_height="match_parent"
app:srcCompat="@drawable/alvo" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="52dp"
android:layout_height="match_parent"
app:srcCompat="@drawable/carteira" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout> </androidx.constraintlayout.widget.ConstraintLayout>
<!-- </ScrollView>--> <!-- </ScrollView>-->

View File

@@ -4,4 +4,5 @@
<color name="branco">#FFFFFFFF</color> <color name="branco">#FFFFFFFF</color>
<color name="cinza">#F8F8F8</color> <color name="cinza">#F8F8F8</color>
<color name="cinzabordas">#EDEDED</color> <color name="cinzabordas">#EDEDED</color>
<color name="cinzaescuro">#CCC9C9</color>
</resources> </resources>