Android之Style

来源:互联网 发布:揭秘网络赚钱的门道 编辑:程序博客网 时间:2024/06/08 19:20
  • 介绍

本文介绍一些Android开发中可能会用到的风格设计(Style)。

  • 全屏

[codesyntax lang="xml"]

<style name="AppTheme" parent="AppBaseTheme">    <item name="android:windowNoTitle">true</item></style>

[/codesyntax]

查看原文:http://surenpi.com/2015/04/15/android%e4%b9%8bstyle/

0 0