David,
Bridge does not force to use of bridge components. For example, you can create a linear layout with a text label in there like the following:
setContentView(R.layout.mylaout);
TextView tv = (TextView) findViewById(R.id.myTextView);
where firstTextView is defined in your layout xml like:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="
http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_horizontal">
<TextView
android:id="@+id/myTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="Hello"
android:textSize="42sp" />
</LinearLayout>