<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/hintergrund"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/display"
android:orientation="vertical"
>
<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="1"
/>
<Button
android:layout_width="fill_parent"
android:text="bla"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/ergebnis"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</LinearLayout>
</LinearLayout>
您好,我是 Android 开发新手,尤其是 XML。
我希望 EditText 和 Button 填充屏幕宽度,但是在模拟器上方运行代码时显示它们居中但仅填充了大约一半的屏幕宽度。我该如何改变它,我做错了什么?谢谢