Skip to content

Instantly share code, notes, and snippets.

@granoeste
Created April 27, 2012 05:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save granoeste/2506185 to your computer and use it in GitHub Desktop.
Save granoeste/2506185 to your computer and use it in GitHub Desktop.
[Android][style] View with Style
<TextView
style="@style/LabelText"
android:text="@string/name" />
<style name="LabelText">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:gravity">right</item>
<item name="android:paddingRight">4dp</item>
<!-- <item name="android:textSize">@dimen/text_size</item> -->
<item name="android:textAppearance">?android:attr/textAppearanceMedium</item>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment