我正在尝试将按钮设置为看起来像我在Android Full Width ICS 风格 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
所以我想这里有两个问题:
- 为什么资源引用语法不同?
- 为什么在 attr 类别下对样式进行令人困惑的错误分类。
- attr 类别甚至再次用于什么?
谢谢!