1

我的应用程序中有以下布局

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TableRow>
    <TextView 
        android:text="Username"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
    <EditText 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1.0"
        android:id="@+id/username"
        android:inputType="textEmailAddress"
        />
</TableRow>
<TableRow>
    <TextView 
        android:text="Password"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
    <EditText 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1.0"
        android:id="@+id/password"
        android:inputType="textPassword"
        />
</TableRow>
    <!-- ADDED NEW -->
<TableRow
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1">
    <LinearLayout 
       android:layout_width="match_parent"
       android:layout_height="match_parent" >
        <CheckBox 
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/savePwd"/>
        <TextView 
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1.0"
            android:text="Save Password (In encrypted clear text)"
            />

    </LinearLayout>
</TableRow>
<TableRow
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1">
    <TextView 
        android:text="Please Log In"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:id="@+id/message_login"/>
</TableRow>
<TableRow android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:gravity="bottom|center">
    <Button 
    android:id="@+id/btn_login"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:text="Log In"/>
</TableRow>

</TableLayout>

这里的问题在于EditTexts。TextViews 展开以匹配 LinearLayout。这不是我想要的。我希望它的行为类似于它下面的按钮(它不会扩展 TextViews)。这是一个屏幕截图...

前...

前

后

4

3 回答 3

2

由于您在 Edit Texts 上使用权重,请从 Edit Texts 中删除 android:layout_width="wrap_content" ,权重将按照您的喜好进行扩展。

于 2013-10-25T14:46:41.610 回答
0
// try this
<?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:padding="5dp"
    android:orientation="vertical">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dp">
        <TextView
            android:text="Username"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
        <EditText
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:id="@+id/username"
            android:layout_marginLeft="5dp"
            android:inputType="textEmailAddress"/>
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dp">
        <TextView
            android:text="Password"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
        <EditText
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:id="@+id/password"
            android:layout_marginLeft="5dp"
            android:inputType="textPassword"/>
    </LinearLayout>
    <!-- ADDED NEW -->
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dp">

            <CheckBox
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/savePwd"/>
            <TextView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:layout_marginLeft="5dp"
                android:text="Save Password (In encrypted clear text)"/>

    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dp">
        <TextView
            android:text="Please Log In"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/message_login"/>
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:gravity="bottom|center"
        android:layout_marginTop="5dp"
        android:layout_weight="1">
        <Button
            android:id="@+id/btn_login"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Log In"/>
    </LinearLayout>

</LinearLayout>
于 2013-10-26T05:48:15.807 回答
0

TextViews/EditText 的这行应该看起来像这样......

<TableRow>
    <TextView 
        android:text="Password"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1.0" />
    <EditText 
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="2.0"
        android:id="@+id/password"
        android:inputType="textPassword"
        />
</TableRow>
于 2013-10-25T15:19:20.553 回答