我在将某个自定义方案(样式)应用于某些视图时遇到问题。我在res / values / styles.xml中定义了自己的样式
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="myStyle1">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textColor">@color/red</item>
<item name="android:textColorHighlight">@color/blue</item>
<item name="android:textColorHint"> @color/fuchsia</item>
<item name="android:textColorLink">@color/olive</item>
<item name="android:typeface">serif</item>
</style>
<style name="AppTheme" parent="android:Theme.Light" />
</resources>
我已将此样式应用于我的简单测试应用程序的主要活动,如此
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main"
android:theme="@style/myStyle1" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
.
.
.
</application>
MainActivity的布局包含几个按钮,一些textViews,其中一些明确地spiecified样式属性,其他一些应该从整个活动中包含它。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/layout_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/silver"
android:orientation="vertical" >
<EditText android:id="@+id/edit_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:hint="@string/edit_message" />
<Button android:id="@+id/send_button"
style="@style/myStyle1"
android:text="@string/button_send" />
<Button android:id="@+id/relative_activity"
android:text="@string/rel_activitity_text"
android:onClick="startRelativeActivity"/>
<Button android:id="@+id/button_TTT"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:textColor="@color/red"
android:text="@string/button_TTT" />
<fragment android:name="my.firstapp.Fragment1"
android:background="@color/red"
android:id="@+id/list"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
据我所知,活动中的所有内容都应根据我定义的风格进行风格化,但是,这就是我得到的内容
如您所见,只有具有指定样式的按钮的文本为红色,其他两个则不是。但是,即使白色按钮从方案中获得正确的字体,因此至少应用了一些。为什么不全部呢?任何帮助将不胜感激,我很困惑。
答案 0 :(得分:0)
如果你想要所有按钮的全局样式,你需要做这样的事情。
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="myStyle1">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textColor">@color/red</item>
<item name="android:textColorHighlight">@color/blue</item>
<item name="android:textColorHint"> @color/fuchsia</item>
<item name="android:textColorLink">@color/olive</item>
<item name="android:typeface">serif</item>
</style>
<style name="AppTheme" parent="android:Theme.Light">
<item name="android:buttonStyle">@style/myStyle1</item>
</style>
</resources>
在你的Android清单中你应该设置主题......
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main"
android:theme="@style/AppTheme" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
.
.
.
</application>
你可以对复选框等做同样的事情。来自这个链接的更多信息。 http://developer.android.com/reference/android/R.attr.html
我也在以下布局上测试了这个。所有3个按钮都应该有红色文字。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/layout_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffaaaaaa"
android:orientation="vertical" >
<EditText android:id="@+id/edit_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:hint="edit_message" />
<Button android:id="@+id/send_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="button_send" />
<Button android:id="@+id/relative_activity"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="rel_activitity_text"
android:onClick="startRelativeActivity"/>
<Button android:id="@+id/button_TTT"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:textColor="#ffff0000"
android:text="button_TTT" />
<!--<fragment android:name="my.firstapp.Fragment1"
android:background="#00ff0000"
android:id="@+id/list"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="wrap_content" />-->
</LinearLayout>