程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-Android布局中按鈕顯示的問題

android-Android布局中按鈕顯示的問題

編輯:編程綜合問答
Android布局中按鈕顯示的問題

我在應用程序中設置這樣一個布局:頂端一個按鈕,第二個按鈕在底端,第三個占整個中間的空間。運用的下面的代碼,但是不顯示第二個按鈕。如何實現布局設計的結果呢?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/LinearLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical">
           <!--view=2-->

   <Button
    android:id="@+id/button2"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Save" 
     />

<Button
    android:id="@+id/button4"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:text="Previous" 
  />
 <Button
    android:id="@+id/button5"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"

    android:text="Next" 
   />
</LinearLayout>

最佳回答:


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/LinearLayout01"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:weightSum="1" >

    <!-- view=2 -->

    <Button
        android:id="@+id/button2"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight=".1"
        android:text="Save" />

    <Button
        android:id="@+id/button4"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight=".8"
        android:text="Previous" />

    <Button
        android:id="@+id/button5"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight=".1"
        android:text="Next" />

</LinearLayout>

enter image description here

nana4ever
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved