0
<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 填充屏幕宽度,但是在模拟器上方运行代码时显示它们居中但仅填充了大约一半的屏幕宽度。我该如何改变它,我做错了什么?谢谢

4

1 回答 1

0

这应该有效:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:backgroun="@drawable/hintergrund"
    android:orientation="vertical" >

    <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="match_parent"
            android:layout_height="wrap_content"
            android:text="bla" />

        <TextView
            android:id="@+id/ergebnis"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
    </LinearLayout>

</LinearLayout>


告诉我进展如何。

于 2012-12-31T04:07:18.077 回答