作成する必要がある以下のビューがあります。次の XML がありますが、テキストが表示されず、高さがコンテンツをラップする代わりに親全体を埋めますか? 以下のスクリーンショットの作成に関するヘルプをいただければ幸いです。
playing.xml
<View
android:background="@drawable/rounded_edges"
android:text="Current Track"
android:textColor="#FFFFFF"
android:id="@+id/current_track"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:editable="false">
</View>
rounded_edges.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<solid android:color="#1F1F1F"/>
<corners android:radius="5px"/>
<padding android:left="20dp" android:top="20dp" android:right="20dp" android:bottom="20dp" />
</shape>