您如何为 android 应用设计风格?
How do you style an android app?
我从事网络开发已有一段时间了,现在我想学习一下android。我知道 java,这很好。我感兴趣的是如何设计我的应用程序。例如,如果我想在我的按钮上放置一些边框,或者添加一个阴影。如果它是一个网站,我会使用 css,但我在 android 中使用什么?
我说的是原生 android 应用程序,我不想使用像 ionic 或类似的框架。
Android 有自己的样式系统思想属性。
有点像css。
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#00FF00"
android:typeface="monospace"
android:text="@string/hello" />
我从事网络开发已有一段时间了,现在我想学习一下android。我知道 java,这很好。我感兴趣的是如何设计我的应用程序。例如,如果我想在我的按钮上放置一些边框,或者添加一个阴影。如果它是一个网站,我会使用 css,但我在 android 中使用什么?
我说的是原生 android 应用程序,我不想使用像 ionic 或类似的框架。
Android 有自己的样式系统思想属性。 有点像css。
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#00FF00"
android:typeface="monospace"
android:text="@string/hello" />