Попробуй использовать android:layout_weight="1" вместе с android:layout_width="0dp" в TextView:
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Large Text"
android:id="@+id/textView"/>
Программно вот так дожно сработать:
TextView lawTitleLabel = new TextView(this);
lawTitleLabel.setText(law.getTitle());
lawTitleLabel.setLayoutParams(new TableLayout.LayoutParams(LayoutParams.WRAP_CONTENT, 0, 1f));