I am having a very hard time justifying TextViews to the left in Android. I looked here but did not have success. The TextViews I want to justify are in Linear Layouts nested in a parent Linear Layout:
<LinearLayout
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal">
        <Button
            android:text="New Button"
            android:id="@+id/button1"
            style="@style/calibrate_button" />
        <TextView
            android:text="@string/calibrate"
            android:id="@+id/textView3"
            style="@style/calibrate_text" />
    </LinearLayout>
Style: @color/White 20sp wrap_content wrap_content ?android:attr/textAppearanceLarge right
<style name="calibrate_button">
    <item name="android:background">#fcfcfc</item>
    <item name="android:layout_width">wrap_content</item>
    <item name="android:layout_height">wrap_content</item>
</style>
 
     
    