Item { id: delegate signal delegateClicked(int index) width: delegate.ListView.view.width height: 40 Rectangle { id: background anchors.fill: delegate color: "black" opacity: 0.5 // or some other value } Text { id: titleText elide: Text.ElideRight text: name color: "white" font.pixelSize: standardFontSize anchors.fill: delegate horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter } }