I just want to give the same background to my both text view.
My code is :
<TextView
    android:layout_width="200dp"
    android:background="#f3f3f3"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:text="192.00 $"
    android:paddingLeft="4dp"
    android:textSize="36sp"
    android:id="@+id/textView"
    android:layout_marginTop="50dp"
    android:layout_below="@+id/imageView"
    android:layout_centerHorizontal="true" />
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceSmall"
    android:text="Recharge Limit"
    android:id="@+id/textView2"
    android:layout_below="@+id/textView"
    android:layout_centerHorizontal="true" />
 
     
     
     
     
    