线性布局调整无法设置

时间:2017-02-27 16:26:00

标签: android eclipse layout

enter image description here

如何在通话按钮下添加其他按钮? 我应该怎么做,以便它来自呼叫按钮? 所以建议我 enter image description here

1 个答案:

答案 0 :(得分:-1)

试试这个。

<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" 
            android:text="Call"/>
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="OtherButton"/>
    </LinearLayout>