[android] Fix PlacePageView components OM mismatches

Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
Konstantin Pastbin
2025-08-21 23:57:42 +07:00
committed by Konstantin Pastbin
parent 0eee3c4bf4
commit e98ecce375
2 changed files with 3 additions and 3 deletions

View File

@@ -148,7 +148,7 @@ public class PlacePageView extends Fragment
private View mAddPlace;
private View mEditTopSpace;
private ImageView mColorIcon;
private TextView mTvCategory;
private MaterialTextView mTvCategory;
private ImageView mEditBookmark;
// Data
@@ -373,7 +373,7 @@ public class PlacePageView extends Fragment
if (mMapObject.isTrack() || mMapObject.isBookmark())
{
UiUtils.hide(mTvSubtitle);
UiUtils.hide(mTvAzimuth, mAvDirection, mTvDistance);
UiUtils.hide(mAvDirection, mTvDistance);
}
}

View File

@@ -204,7 +204,7 @@
android:focusable="true"
android:paddingHorizontal="8dp"
android:paddingVertical="5dp" />
<TextView
<com.google.android.material.textview.MaterialTextView
android:id="@+id/tv__category"
style="@style/PlacePageMetadataText.Button"
android:layout_alignParentTop="true"