У меня есть RelativeLayout, который содержит изображения и тексты.изображения показывают, но текст не показывает, даже я могу видеть их на дизайне.Я использую приведенный ниже XML в теге include внутри CoordinatorLayout.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/toptoolbarview"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="?attr/colorPrimary"
android:paddingTop="5dp"
android:paddingBottom="5dp">
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:layout_alignParentTop="true"
android:background="@color/black" />
<ImageView
android:id="@+id/sort"
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:layout_marginStart="5dp"
android:layout_marginLeft="25dp"
android:contentDescription="@string/provider_not_found"
android:src="@drawable/sort" />
<TextView
android:id="@+id/sortTxt"
android:layout_width="32dp"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="15dp"
android:layout_toEndOf="@id/sort"
android:textColor="#FFFFFF"
android:textSize="18sp"
android:textStyle="bold"
tools:text="@string/sort" />
</RelativeLayout>
Ниже, где указан вышеупомянутый xml:
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
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:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="io.github.luizgrp.sectionedrecyclerviewadapter.demo.HomeActivity">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppBarOverlay">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/PopupOverlay"/>
<----- В этом месте, где я включаю XML, содержится вышекод --->
<include
layout="@layout/toptoolbar"
android:background="?attr/colorPrimary"
android:layout_width="match_parent"
android:layout_height="48dp" />
</com.google.android.material.appbar.AppBarLayout>
<include layout="@layout/content_home"
/>
<include
android:id="@+id/inc_bot_nav"
layout="@layout/bottom_nav"
/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
Первое изображение, показывающее работающее приложение Второе изображение, показывающее код в дизайне Android
Как вы можете видетьиз изображений и XML, кажется, все должно быть в порядке.Что не так с моим кодом?любая помощь спасибо