I'm wondering if there is a method to make such matrix:

I've tried this solution, but the description text cannot be aligned left:

Any suggestions are appreciated!
BTW, as suggested by CarLaTeX, I've posted my latex code here for the convenience of all the later readers:
\documentclass[10pt]{article}
\usepackage[usenames]{color} %used for font color
\usepackage{amssymb} %maths
\usepackage{amsmath} %maths
\usepackage{blkarray} %block array
\usepackage[utf8]{inputenc} %useful to type directly diacritic characters
\begin{document}
\begin{align*}x = \begin{blockarray}{cc}
\begin{block}{(c)c}
\dots & \dots \\
0 & \text{android.hardware.wifi} \\
1 & \text{android.hardware.telephony} \\
\dots & \dots \\
1 & \text{SEND\_SMS} \\
0 & \text{DELETE\_PACKAGES} \\
\dots & \dots \\
\end{block}
\end{blockarray}\end{align*}
\end{document}
