2017-02-27 131 views
-2

enter image description here线性布局调整无法设置

如何在通话按钮下添加另一个按钮? 我应该怎么做,以便它通话按钮? 因此暗示我 enter image description here

+0

分享您已写入 – Passiondroid

+0

份额的XML布局你的代码 –

+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>