大家都知道Android studio默认的按钮样式是非常丑陋的,所以今天我要创造一个符合线代感的按钮
在这里插入图片描述
以上 是as给我提示的警告信息,意思是设置按钮的样式为如下:

<LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        style="?android:attr/buttonBarStyle"
        android:orientation="horizontal">

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            style="?android:attr/buttonBarButtonStyle"
            android:text="@string/true_button"/>

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            style="?android:attr/buttonBarButtonStyle"
            android:text="@string/false_button"/>
    </LinearLayout>

主要在父布局中添加属性:

style="?android:attr/buttonBarStyle"

然后在按钮字段中添加属性:

style="?android:attr/buttonBarButtonStyle"

这样形成的按钮就没有了之前丑陋的边界了,变成一种漂亮的扁平化无边界的按钮了

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐