Files
comaps/android/app/src/main/res/layout/place_page_cuisine.xml
Alexander Borsuk 220def168d [android] Removed unused android:tag
Signed-off-by: Alexander Borsuk <me@alex.bio>
2025-05-29 09:49:07 +02:00

26 lines
859 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/ll__place_cuisine"
style="@style/PlacePageItemFrame"
tools:visibility="visible"
tools:ignore="UseCompoundDrawables">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/margin_base"
app:tint="?iconTint"
app:srcCompat="@drawable/ic_cuisine"/>
<TextView
android:id="@+id/tv__place_cuisine"
android:textAlignment="viewStart"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="@style/MwmTextAppearance.PlacePage"
tools:text="Japan, European"/>
</LinearLayout>