gpt4 book ai didi

Android 样式 : Difference between 'style="@android:style/XYZ "' and ' style ="?android:attr/XYZ"'?

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:24:13 27 4
gpt4 key购买 nike

我正在尝试将按钮样式设置为看起来像我在 Android Full Width ICS style Minimalist Bottom ButtonsViews 中询问的那些按钮.

我已经成功了,有兴趣的人可以使用以下 xml:

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="bottom"
android:divider="@android:drawable/divider_horizontal_dark"
android:gravity="bottom"
android:orientation="vertical"
android:paddingTop="16dip"
android:showDividers="beginning|end" >

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:measureWithLargestChild="true"
android:orientation="horizontal"
android:divider="@android:drawable/divider_horizontal_dark"
android:showDividers="middle" >


<Button
android:id="@+id/cancel_button"
style="?android:attr/buttonBarButtonStyle"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_weight="1"
android:maxLines="2"
android:text="@string/cancel_button" />

<Button
android:id="@+id/login_button"
style="?android:attr/buttonBarButtonStyle"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:layout_weight="1"
android:filterTouchesWhenObscured="true"
android:maxLines="2"
android:text="@string/login_button" />

</LinearLayout>
</LinearLayout>

但有一个问题。 eclipse 内容支持不知道以下资源解析发生了什么:

style="?android:attr/buttonBarButtonStyle"

我熟悉典型的分辨率(eclipse 的内容辅助知道)

style=@android/style/...

...但我不清楚两者之间的区别。似乎某些样式属性出现在一个而不是另一个中。例如,以下内容不解决任何问题:

style=@android:attr/buttonBarStyle

这也不是:

style="@android:style/buttonBarStyle

所以我想这里有两个问题:

  1. 为什么资源引用语法不同?
  2. 为什么在 attr 类别下会出现令人困惑的样式错误分类。
  3. attr 类别又用来做什么?

谢谢!

最佳答案

来自 another answer关于 SO(此处解释):

在 ID 前使用问号意味着您要访问样式主题中定义的样式属性,而不是对该属性进行硬编码。

将其视为取消引用主题属性以获取它指向的资源,而不是引用属性本身。

Referencing Style Attributes

关于Android 样式 : Difference between 'style="@android:style/XYZ "' and ' style ="?android:attr/XYZ"'?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11158349/

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