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的。