The header I’m looking for would look something like this:

Just need something to stay to the left, stay in the center, and stay to the right. Everything I have tried has had the center moved over a little towards the right so it looks off center. Any ideas or suggesstions?
EDIT:
This seems to be the closest I’ve been able to do with a simple amount of code
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#000"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/LinearLayout2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#000"
android:orientation="horizontal" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_weight="1"
android:text="First"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#fff" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:text="Second"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#fff" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:layout_weight="1"
android:text="3"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#fff" />
</LinearLayout>
</LinearLayout>
Thanks in advance
I’ll tell you how to do this. Set up a horizontal LinearLayout with layout_width of fill_parent and layout_height of wrap_content and weightSum of, in your case, 3. Fill it with three TextViews with layout_width set to fill_parent, layout_height set to wrap_content and layout_weight set to 1. Then the first TextView’s gravity to “left”, second one’s to “center” and the third one’s to “right”. Done.