Skip to content

Instantly share code, notes, and snippets.

@Reacoder
Created July 24, 2014 04:10
Show Gist options
  • Save Reacoder/2466dae9537ae56f5511 to your computer and use it in GitHub Desktop.
Save Reacoder/2466dae9537ae56f5511 to your computer and use it in GitHub Desktop.
TableLayout
<TableLayout
android:id="@+id/mytubeplayer_user_info_table"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:stretchColumns="0,1" >
<TableRow>
<TextView
android:alpha="0.4"
android:gravity="center"
android:text="Subscribe"
android:textColor="@android:color/white"
android:textSize="12sp" />
<TextView
android:alpha="0.4"
android:gravity="center"
android:text="Views"
android:textColor="@android:color/white"
android:textSize="12sp" />
</TableRow>
<TableRow
android:paddingBottom="8dp"
android:paddingTop="4dp" >
<TextView
android:alpha="0.7"
android:gravity="center_horizontal"
android:text="432432"
android:textColor="@android:color/white"
android:textSize="16sp" />
<TextView
android:alpha="0.7"
android:gravity="center_horizontal"
android:text="434"
android:textColor="@android:color/white"
android:textSize="16sp" />
</TableRow>
</TableLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment