отметьте android:maxLines="1"
и, если вы хотите добавить окончание ...
, добавьте также android:ellipsize="end"
<TextView
android:id="@+id/name"
android:text="i want this to crop not wrap"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:maxLines="1"
android:ellipsize="end" />
android:singleLine="true"
было устарело на уровне API 3 .