Лучше сделать в макетах, не используйте код
, ниже создается EditText, который занимает половину экрана, и TextView, который занимает вторую половину, просто научитесь играть с макетами, они должны позволитьВы получите ожидаемый результат
<LinearLayout android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<EditText android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1" />
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1" />
</LinearLayout>