作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当前布局
我有一个与xml布局相关的问题,我不知道如何添加原色和原色。有谁能够帮我?
main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ListView android:id="@+id/in"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:stackFromBottom="true"
android:transcriptMode="alwaysScroll"
android:layout_weight="1"/>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText android:id="@+id/edit_text_out"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="bottom"/>
<Button android:id="@+id/button_send"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/send"/>
</LinearLayout>
</LinearLayout>
最佳答案
您应该在 values 文件夹中修改或创建文件 styles.xml(如果不存在),如下所示:
<style name="MyMaterialTheme.Base" >
<!-- Primary Color -->
<item name="colorPrimary">@color/colorPrimary</item>
<!-- darker variant for the status bar and contextual app bars -->
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<!-- theme UI controls like checkboxes and text fields -->
<item name="colorAccent">@color/colorAccent</item>
</style>
关于android - 如何更改primary和primaryDark颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33315857/
我正在尝试重现 Google 日历应用程序的行为: 但我还没有找到改变状态文本颜色的方法。如果我将 colorPrimaryDark 设置为白色,我看不到状态栏的图标,因为它们的颜色也是白色的。 有什
我创建了一个应用程序,它有多个主题并且动态变化。我的意思是在运行时用户可以选择不同的主题。以便 UI 组件颜色在运行时发生变化。我陷入了一个奇怪的问题。问题是状态栏颜色没有根据主题改变。 status
我是一名优秀的程序员,十分优秀!