android的界面设计总是出错,大神帮忙看看这种方法错在哪里

这是按键的代码
style="@style/ll_linear">

    <Button
        style="@style/btn_operand"
        android:text="7" />

    <Button
        style="@style/btn_operand"
        android:text="8" />

    <Button
        style="@style/btn_operand"
        android:text="9" />
    <Button
        style="@style/btn_operate"
        android:text="/" />
</LinearLayout>

    这是格式的代码
    <style name="btn_operand">
    <item name="android:background">@color/gray</item>
    <item name="android:gravity">center</item>
    <item name="android:textColor">@color/black</item>
    <item name="android:textSize">70sp</item>
    <item name="android:layout_weight">1</item>
    <item name="android:layout_height">match_parent</item>
    <item name="android:layout_width">match_parent</item>
</style>
<style name="btn_operate" parent="btn_operand">
    <item name="android:textColor">@color/white</item>
    <item name="android:background">@color/org</item>
</style>
![图片说明](https://img-ask.csdn.net/upload/201509/11/1441978664_232095.png)

一定要正确的设置SDK的环境变量

先描述清楚什么错误,贴出来看看

包括Button的LinearLayout标签没有设置**layout_width**属性。