<style>のparent(明示的継承)

parentに、もともと定義されている<style>のnameを指定することで、その<style>を継承できる。(明示的継承とも呼ぶ。)

スタイルとテーマ  |  Android デベロッパー  |  Android Developers
AndroidのTheme/Styleを理解する - Qiita

styles.xmlで、

CustomStyle_Height30dpButtonは、android:layout_heightだけ30dpにしてる。
CustomStyle_HeightWidth30dpButtonは、parentでCustomStyle_Height30dpButtonを継承してるので、android:layout_heightが30dpな上に、自分でandroid:layout_widthも30dpにしてる。
activity_main.xmlは、

button1は、styleにCustomStyle_Height30dpButtonを指定してるので、android:layout_widthは60dpにした。
button2は、styleにCustomStyle_HeightWidth30dpButtonを指定したので、自前では指定しない。

button1は縦30dpの横60dp、button2は縦横どちらも30dp。
button1は縦30dpの横60dp、button2は縦横どちらも30dp。

Sample/android/styleTag/parent/src/styleTag at master · bg1bgst333/Sample · GitHub