Забудьте LinearLayout, используйте RelativeLayout.Это должно поместить TextBox слева и RadioButton справа, как вы просите.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/txtVehName"
android:hint="@string/VEH_NAME"
android:textSize="18sp"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</TextView>
<RadioButton
android:id="@+id/rbDefault"
android:text=""
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/txtVehName">
</RadioButton>
</RelativeLayout>
Eclipsed4utoo - это 100% правильно, вы должны использовать dp
вместо sp
, потому что они будут визуализироватьсяодинаковый размер для всех устройств.