Отмените новый инструмент Lint против моего кода. У него появилось много хороших предложений, но я этого не понимаю.
Этот тег и его дочерние элементы могут быть заменены одним и составным чертежом
Проблема: проверяет, может ли текущий node заменить TextView с помощью составных чертежей.
LinearLayout, который содержит ImageView и TextView, может быть более эффективно обрабатываться как составная версия
И вот мой макет
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_centerInParent="true">
<ImageView
android:id="@+id/upImage"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_gravity="center_vertical"
android:scaleType="centerInside"
android:src="@drawable/up_count_big">
</ImageView>
<TextView
android:id="@+id/LikeCount"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="2dp"
android:layout_marginBottom="1dp"
android:textColor="@color/gray"
android:textSize="16sp"
android:layout_gravity="center_vertical">
</TextView>
</LinearLayout>
Может ли кто-нибудь предоставить конкретный пример того, как сделать сложный код в этом случае?