我是 Android 开发的新手,我想学习如何设置按钮元素的样式。我熟悉 HTML 中的样式(CSS 和 HTML 样式)。例如,我如何将这种 css 样式转换并实现到 Android 中(我假设 XML 样式):
.buttonClass{
background-color: #fff;
color: #000;
border-radius: 10px;
opacity: 0.5
...
}
我在 Eclipse 上为我创建的图形布局有这个按钮元素代码:
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Camera" />