У меня есть TextView в FrameLayout с фоном 150 x 53 пикселей, но когда мое приложение загружается, фон занимает всю ширину представления, я только хочу, чтобы он занимал ширину текста.Как я могу это сделать?
<TextView
android:id="@+id/txtPrice"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="60dip"
android:layout_marginTop="164dip"
android:adjustViewBounds="true"
android:layout_gravity="top|center"
android:gravity="center"
android:textStyle="bold"
android:textSize="46dip"
android:textColor="#ffffff"
android:background="@drawable/greenbg"
android:text="$0.00" />