Because the output for ls -l is similar to this:
-rw-r--r-- 1 root root 1491872 2012-11-22 03:07 Xvfb_screen0
Piping this to xargs (ls -l | xargs grep xyz) is making your grep command to be
grep xyz -rw-r--r-- 1 root root 1491872 2012-11-22 03:07 Xvfb_screen0
And it does not have any sense.
edit
to answer @vladr comment here because it has better formatting than the comments box. Each whitespace separated text from the input of xargs is passed as a new param to the executed command, as you can see:
$ ls -l
total 4
-rwxrwxr-x 1 carlos carlos 18 2012-11-22 15:17 foo
$ cat foo
#!/bin/sh
echo $#
$ ls -l | xargs ./foo
10
It's possible to behave the way you say by setting the delimiter in xargs to \n:
$ ls -l | xargs -d '\n' ./foo
2