gpt4 book ai didi

android - 实际的 Android 布局与设计器不同

转载 作者:行者123 更新时间:2023-11-30 01:57:08 25 4
gpt4 key购买 nike

根据 this post ,我知道如何更改操作栏的颜色。所以我有以下 styles.xml 文件:

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>

<style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">#AFB42B</item>
</style>

<style name="MyTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
</resources>

这是布局文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity"
android:orientation="vertical"
android:background="#CDDC39"
android:gravity="right">

<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="numberDecimal"
android:ems="10"
android:id="@+id/text_field"
android:hint="Enter Amount"
android:textSize="15pt"
android:autoText="false"
android:background="#F0F4C3"
android:padding="10dp"
android:layout_margin="10dp"
android:textColor="#212121"/>

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Convert it!"
android:id="@+id/button"
android:layout_margin="10dp"
android:padding="25dp"
android:textColor="#212121"/>

<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/scrollView">

<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Please Enter Amount"
android:id="@+id/textView"
android:textSize="10pt"
android:typeface="monospace"
android:textColor="#212121"/>
</ScrollView>
</LinearLayout>

并且在设计器中,我选择了相应的主题,看起来不错。在设计器中,操作栏是绿色的,其他东西看起来也不错。然而,当我在我的手机上运行这个应用程序时,操作栏是黑色的,并且一个假设是绿色的按钮(带有文本“转换它!”的按钮)是它的默认颜色。如果重要的话,我的手机使用的是 Android 4.3。

问题:为什么实际布局和设计者不一样?是安卓版本的原因吗?我该如何解决?

最佳答案

确保在 list 文件中指定 Activity 的主题

<activity
android:theme="@style/MyTheme">

关于android - 实际的 Android 布局与设计器不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32050962/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com