`
zxl_ong
  • 浏览: 128551 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论

使用主题属性(?android:attr/android:textDisabledColor)

阅读更多
使用主题属性

另外一种资源值允许你引用当前主题中的属性的值。这个属性值只能在样式资源和XML属性中使用;它允许你通过将它们改变为当前主题提供的标准变化来改变UI元素的外观,而不是提供具体的值。

如例中所示,我们在布局资源中使用这个特性将文本颜色设定为标准颜色的一种,这些标准的颜色都是定义在基本系统主题中:

<?xml version="1.0" encoding="utf-8"?>
<EditText id="text"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    android:textColor="?android:textDisabledColor"
    android:text="@string/hello_world" />


注意,这和资源引用非常类似,除了我们使用一个“?”前缀代替了“@”。当你使用这个标记时,你就提供了属性资源的名称,它将会在主题中被查找——因为资源工具知道需要的属性资源,所以你不需要显式声明这个类型(如果声明,其形式就是?android:attr/android:textDisabledColor)。

除了使用这个资源的标识符来查询主题中的值代替原始的资源,在这里关于该类型的name语法:?[namespace:]typpe/name和“@”形式一样,也是可选。


分享到:
评论

相关推荐

    花样Android_ProgressBar_史上最强大讲解.doc

    android:attr/progressBarStyleLarge"`,可以得到一个更大的圆形`ProgressBar`。在XML布局文件中的定义如下: ```xml android:id="@+id/widget196" android:layout_width="wrap_content" android:layout_...

    Android Button 自带阴影效果另一种解决办法

    android:attr/borderlessButtonStyle"`,Button会采用无边框的样式,从而消除阴影。但这种方法的缺点在于,如果已经在样式表中为Button定义了一个独立的style,并且想在多个地方复用,那么直接在XML布局中添加style...

    Android 学习笔记(十六):Widget-进度条.doc

    android:attr/progressBarStyleHorizontal"`定义了一个水平的进度条,`android:max`属性指定了最大值,这里是200。另外,`android:visibility`属性用于控制进度条的可见性,`gone`和`invisible`都可以使进度条不可见...

    android ProgressBar各种用法

    android:attr/progressBarStyleLarge"` - **XML 定义**: ```xml android:id="@+id/widget196" android:layout_width="wrap_content" android:layout_height="wrap_content" style="?android:attr/...

    花样ProgressBar.pdf

    android:attr/progressBarStyleHorizontal" android:layout_gravity="center_vertical" android:max="100" android:progress="50" /&gt; ``` #### 三、不同样式的圆形进度条 文档中提到了几种不同样式的圆形进度条...

    Android中使用ProgressBar实现进度条

    android:attr/progressBarStyleHorizontal"`属性: ```xml android:id="@+id/progressBarHorizontal" style="?android:attr/progressBarStyleHorizontal" android:layout_width="match_parent" android:layout...

    android 进度条 demo

    android:attr/progressBarStyleSmall"`或`style="?android:attr/progressBarStyleLarge"`可以创建小号或大号的圆形进度条,也可以自定义颜色和大小。 3. **旋转进度条**:使用`style="?android:attr/...

    AAPT: error: resource attr/** (aka com.**.app:attr/**) not found.

    //之前使用的是3.5.2版本,升级成3.6.2后就出现了上面的错误, //还原成原来版本问题消失。 //猜测是gradle3.6.2版本存在问题。 classpath 'com.android.tools.build:gradle:3.6.2' } } 反思 项目出现问题

    Android5.0水波纹效果

    android:attr/selectableItemBackgroundBorderless`或`?android:attr/selectableItemBackground`来轻松实现水波纹效果。 具体实现水波纹效果的方法有以下几种: 1. 使用Theme: 在应用的主题中设置`...

    Android 开发技巧之 ProgressBar 各种样式大全.pdf

    android:attr/progressBarStyleSmallIndeterminate" android:layout_width="wrap_content" android:layout_height="wrap_content" /&gt; ``` **5. 自定义样式** 除了系统提供的样式外,还可以通过自定义Drawable来...

    androidUI进阶之实现listview的下拉加载.pdf

    android:attr/progressBarStyleSmall"/&gt; android:id="@+id/pull_to_refresh_image" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="30dip" android:...

    android拱形进度条和圆形进度条

    android:attr/progressBarStyleLarge"`,而圆形进度条则使用`style="?android:attr/progressBarStyleHorizontal"`并配合`android:indeterminate="true"`来实现。 要更改进度条的样式,主要涉及到以下几个方面: 1....

    Android中进度条示例

    android:attr/progressBarStyleHorizontal" android:layout_width="match_parent" android:layout_height="wrap_content" android:progress="50" /&gt; ``` 如果你需要圆形进度条,可以使用`android:...

    android 各种自定义样式 progress

    android:attr/progressBarStyleHorizontal" /&gt; ``` 2. **颜色自定义** 进度条的颜色可以通过修改`android:progressDrawable`属性来自定义。可以创建一个XML资源文件,如`res/drawable/progress_drawable.xml`,并...

    Android5.0新特性着色剪裁波纹Demo

    android:attr/colorControlHighlight"&gt; &lt;item android:id="@android:id/mask"&gt; &lt;color android:color="@android:color/white" /&gt; &lt;/item&gt; &lt;!-- Your background drawable here --&gt; &lt;/selector&gt; &lt;/item&gt; &lt;/...

    Android开发之ProgressBar及其style样式的使用.zip

    android:attr/progressBarStyleHorizontal"`表示使用水平样式,`android:max`设置最大值,通常为100,代表100%的进度。 二、Kotlin与ProgressBar交互 在Kotlin代码中,我们可以获取到ProgressBar的引用并控制其进度...

    Android点击水波纹

    android:attr/selectableItemBackgroundBorderless`引用的就是RippleDrawable,它可以提供无边框的点击反馈效果。如果你想要自定义颜色和形状,可以创建一个drawable资源文件: ```xml &lt;ripple xmlns:android=...

    Android应用:TextView超级链接的2种实现方法

    android:attr/textColorLink"`设置了链接文本的颜色。 ### Java源代码实现 如果我们希望在运行时动态添加超链接,可以使用`SpannableString`和`Linkify`类。首先,我们需要创建一个`SpannableString`对象,并使用`...

    Android开发中的水波纹效果实现

    attr/selectableItemBackground"`属性或者`android:foreground="?attr/selectableItemBackgroundBorderless"`(无边框效果)。这两个属性会自动创建一个触摸反馈层,当用户点击或触摸时,就会显示出水波纹效果。 ...

Global site tag (gtag.js) - Google Analytics