what is the meaning of @ and ? in the layout.xml file I am new to android.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@android:color/holo_red_dark">
<ImageView
android:src="@drawable/duck"
android:layout_width="100dp"
android:layout_height="100dp"
android:scaleType="centerCrop"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Link"
android:textSize="?android:textAppearanceLarge"
/>
</LinearLayout>
android:textSize="?android:textAppearanceLarge"
android:background="@android:color/holo_red_dark"