in the layout xml files that we create . we sometimes use '@' & '?' attribute what does it mean
For e.g i created toolbar.xml . i could see the ?android:attr/actionBarSize what does this mean
& what does @android:style/**ThemeOverlay.Material.Dark.ActionBar" mean
<?xml version="1.0" encoding="utf-8"?>
<Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="**?android:attr/actionBarSize**"
android:background="**?android:attr/colorPrimary**"
android:theme="**@android:style/**ThemeOverlay.Material.Dark.ActionBar"/>