In the Notes view create a column which shows the name of attachment in column using formula @AttachmentNames. Then in your view control in XPage set the var property to, say, rowData. Then you can use this rowData variable to get the current document being shown in view. You can use the below code snippet of view column to show icon image attached in document as view icon.
<xp:viewColumn>
<xp:this.facets>
<xp:viewColumnHeader xp:key="header"></xp:viewColumnHeader>
</xp:this.facets>
<xp:this.iconSrc><![CDATA[#{javascript:rowData.getDocument().getUniversalID() + "/$FILE/" + rowData.getColumnValue("$1")}]]></xp:this.iconSrc>
<xp:this.value><![CDATA[#{javascript:""}]]></xp:this.value>
</xp:viewColumn>
Modify the above code to use the programmatic name of column which displays the attachment names in rowData.getColumnValue("$1").
One assumption here is that there is only one attachment per document. Also I don't know whether this is the best way, but it worked for my scenario.