Since the matrix is symmetric, all eigenvalues are real. By Greshgorin circle theorem, each of these eigenvalues lies in the disc centered $a_{ii}$ with radius $a_{ii}$, hence are non-negative. The eigenvalues are thus non-negative. The smallest eigenvalue is clearly $0$, since the all 1 vector is an eigenvector with eigenvalue 0.
Since each diagonal element is the sum of absolute values in each row, and each row has a sum of 0, thus the only positive entries are on the diagonal, and the rest of the entries are nonpositive. In particular, all the $a_{1i}, i\neq 1$ are negative.
(Added explanation: If any of the non-diagonal elements are positive, then by considering the sum of that row, we will get a positive value, hence the row doesn't have a sum of 0. The mathematical proof is:
$ a_{kk} = \sum_{k \neq i} |a_{ki}| $, so $ 0 = |a_{kk} + \sum_{k\neq i} a_{ki}| \geq a_{kk} - \sum_{k \neq i} |a_{ki}| = 0$ by the triangle inequality. Since equality holds, this implies that $a_{ki}$ must have the opposite sign (or could be 0), as compared to $a_{kk}$.)
Edit: Since a real symmetric matrix has a complete (orthogonal) eigenbasis, to calculate the dimension of the generalized eigenspace, it is sufficient to consider just eigenvectors.
Now, consider any other eigenvector $v$ that isn't a multiple of the all 1 vector. If it isn't a multiple of a vector with $\pm 1$ entries, let $v_k$ be (one of) the entry with the largest absolute value, and there exists $j$ such that $|v_j| < |v_k|$ Consider expansion along row $k$, we get $$\sum_{i\neq k} |a_{k i} v_i| \leq \sum_{i \neq k} |a_{ki}| \cdot |v_k| \leq |a_{k k} v_k|.$$ However, we cannot have equality hold throughout, since we have $|v_j| < |v_k|$. Hence, the kth entry in $A v_k$ is not 0, so the eigenvalue is not 0.
If $v$ is a multiple of a vector with $\pm1$ entries, consider expansion along the first row. We now use the condition that $a_{1i} < 0$, which shows that in order for this eigenvector to have eigenvalue 0, then this eigenvector must be a multiple of $(1, 1, 1, \ldots, 1)$, which we already considered.
Hence, there is no other possible eigenvector with eigenvalue 0, so the dimension of this eigenspace is 1.
You should read user1551's solution, as that has a better way of dealing with the eigenvalues, then such a crude brute force computation.