I just updated Android Studio from 1.3 to 1.4, and there are some new features that I don't quite understand. When creating a new one Blank Activity
, two .xml layout files are added. The name of my activity PaymentActivity
, so I get content_payment.xml
and activity_payment.xml
. This file content_payment.xml
contains nothing but RelativeLayout
that has this in it:
tools:showIn="@layout/activity_payment">
What is this new layout?
source
share