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

布局-android簡單UI問題!!!

編輯:編程綜合問答
android簡單UI問題!!!

android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:divider="#0000" >

    <EditText
    android:id="@+id/input_text"
    android:layout_width="0dp"   /*這行錯了,錯誤說明:this will make the view invisible, probably intended for layout_height*/
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:hint="Type somthing here"
    android:maxLines="2" />
    <Button
    android:id="@+id/send"
    android:layout_width="wrap_content"     
    android:layout_height="wrap_content"
    android:text="Send" />

最佳回答:


你設置他的寬為0dp,你見過寬為0的視圖嗎?所以系統提示你:這樣設置將使控件不顯示(invisible)。寬度和高度都是不能設置為0的。

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