|
|
@@ -2,9 +2,8 @@
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
android:id="@+id/root"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_margin="@dimen/rv_item_margin"
|
|
|
+ android:layout_width="@dimen/item_rv_technology_width"
|
|
|
+ android:layout_height="@dimen/item_rv_technology_height"
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
<ImageView
|
|
|
@@ -14,4 +13,11 @@
|
|
|
<TextView
|
|
|
android:id="@+id/tv_number"
|
|
|
style="@style/CommonTextView" />
|
|
|
+
|
|
|
+ <androidx.recyclerview.widget.RecyclerView
|
|
|
+ android:id="@+id/rv_type"
|
|
|
+ style="@style/CommonRecyclerView"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ app:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
|
|
|
+ app:spanCount="2"/>
|
|
|
</LinearLayout>
|