1 |
efrain |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
3 |
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
4 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
5 |
xmlns:tools="http://schemas.android.com/tools"
|
|
|
6 |
android:layout_width="match_parent"
|
|
|
7 |
android:layout_height="wrap_content"
|
|
|
8 |
android:padding="5dp"
|
|
|
9 |
>
|
|
|
10 |
|
|
|
11 |
<ImageView
|
|
|
12 |
android:id="@+id/fragment_company_listitem_image"
|
|
|
13 |
android:layout_width="40dp"
|
|
|
14 |
android:layout_height="40dp"
|
|
|
15 |
app:layout_constraintTop_toTopOf="parent"
|
|
|
16 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
17 |
app:layout_constraintLeft_toLeftOf="parent" />
|
|
|
18 |
|
|
|
19 |
<TextView
|
|
|
20 |
android:id="@+id/fragment_company_listitem_name"
|
|
|
21 |
style="@style/textview_capsule_name"
|
|
|
22 |
android:layout_width="0dp"
|
|
|
23 |
android:layout_height="wrap_content"
|
|
|
24 |
android:layout_marginLeft="10dp"
|
|
|
25 |
android:gravity="fill_vertical"
|
|
|
26 |
android:text="TextView"
|
|
|
27 |
app:layout_constraintBottom_toBottomOf="@id/fragment_company_listitem_image"
|
|
|
28 |
app:layout_constraintLeft_toRightOf="@id/fragment_company_listitem_image"
|
|
|
29 |
app:layout_constraintTop_toTopOf="@id/fragment_company_listitem_image" />
|
|
|
30 |
|
|
|
31 |
<ImageView
|
|
|
32 |
android:id="@+id/fragment_company_listitem__arrow"
|
|
|
33 |
android:layout_width="wrap_content"
|
|
|
34 |
android:layout_height="wrap_content"
|
|
|
35 |
android:src="@drawable/baseline_keyboard_arrow_right_24"
|
|
|
36 |
app:layout_constraintTop_toTopOf="parent"
|
|
|
37 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
38 |
app:layout_constraintRight_toRightOf="parent"/>
|
|
|
39 |
|
|
|
40 |
<View style="@style/Divider"
|
|
|
41 |
android:layout_width="match_parent"
|
|
|
42 |
android:layout_height="wrap_content"
|
|
|
43 |
app:layout_constraintTop_toBottomOf="@id/fragment_company_listitem_image"
|
|
|
44 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
45 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
46 |
|
|
|
47 |
/>
|
|
|
48 |
|
|
|
49 |
|
|
|
50 |
</androidx.constraintlayout.widget.ConstraintLayout>
|