Created
July 30, 2014 02:45
-
-
Save Reacoder/a1c9e0550ba95443e084 to your computer and use it in GitHub Desktop.
TableLayout 每列的宽度相等。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<TableLayout | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:layout_marginTop="12dp" > | |
<TableRow> | |
<TextView | |
android:layout_width="0dp" | |
android:layout_height="wrap_content" | |
android:layout_weight="1" | |
android:alpha="0.4" | |
android:gravity="center" | |
android:text="@string/channel_detail_uploads" | |
android:textColor="@android:color/white" | |
android:textSize="14sp" /> | |
<TextView | |
android:layout_width="0dp" | |
android:layout_height="wrap_content" | |
android:layout_weight="1" | |
android:alpha="0.4" | |
android:gravity="center" | |
android:text="@string/channel_detail_subscribe" | |
android:textColor="@android:color/white" | |
android:textSize="14sp" /> | |
<TextView | |
android:layout_width="0dp" | |
android:layout_height="wrap_content" | |
android:layout_weight="1" | |
android:alpha="0.4" | |
android:gravity="center" | |
android:text="@string/channel_detail_videos_views" | |
android:textColor="@android:color/white" | |
android:textSize="14sp" /> | |
</TableRow> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment