Skip to content

Instantly share code, notes, and snippets.

@manishkpr
Created December 30, 2016 09:06
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 manishkpr/cea1a979ac83a8cb3b24a4f92e4ba076 to your computer and use it in GitHub Desktop.
Save manishkpr/cea1a979ac83a8cb3b24a4f92e4ba076 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme" parent="android:Theme">
<item name="android:background">@null</item>
<item name="android:windowNoTitle">true</item>
</style>
<style name="text_title">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textColor">@color/d_gray</item>
<item name="android:gravity">center</item>
</style>
<style name="text_option">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textColor">@color/black</item>
</style>
<style name="layout_wrap">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
</style>
<style name="layout_fill">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">fill_parent</item>
</style>
<style name="layout_f_w">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
</style>
<style name="h_line">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">1.5dip</item>
<item name="android:background">@color/l_blue</item>
</style>
<style name="indicator_style">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">4dip</item>
<item name="android:background">@color/l_blue</item>
<item name="android:orientation">vertical</item>
</style>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment