我是Android新手。我正在閱讀關於線性佈局的Android官方文檔。獲取線性佈局錯誤
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingLeft="15dp"
android:paddingRight="15dp"
tools:context="com.example.hassan_microsoft.a2ndday18122017.MainActivity">
<EditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="15dp"
android:paddingRight="15dp"
android:hint="@string/to"/>
在這條線=>機器人:提示=「@字符串/到」 它給錯誤,而不是工作,我希望它的工作。 Picture1
這個預覽(圖片1)應該是結果,但我的發佈如下圖所示(圖片2)。 Picture2可能是什麼問題。?謝謝。
將您的edittext高度match_parent更改爲wrap_content。 –