21

使用时fill_parentmaxWidth没有效果。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="fill_parent"
              android:layout_height="match_parent"
              android:orientation="vertical">
    <LinearLayout android:layout_width="fill_parent"
                  android:layout_height="match_parent"
                  android:orientation="vertical">
        <EditText android:layout_width="match_parent"
                  android:layout_height="wrap_content"
                  android:maxWidth="50dip"/>
    </LinearLayout>    
</LinearLayout>
4

3 回答 3

30

该属性对(或不推荐使用maxWidth的)宽度没有影响,它们是互斥的。你需要使用.match_parentfill_parentwrap_content

此外,任何只有一个孩子的布局都可能被删除,例如,您可以将当前布局简化为:

<?xml version="1.0" encoding="utf-8"?>
<EditText xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:maxWidth="50dip"/>
于 2012-11-10T19:44:41.627 回答
19

如果有人想要在单个父布局中的组合行为:您可以使用 ConstraintLayoutmatch_parent并通过结合.maxWidthlayout_constraintWidth_max

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <EditText 
        android:layout_width="0dp"
        android:layout_height="wrap_content"                
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintWidth_max="480dp"/>
</androidx.constraintlayout.widget.ConstraintLayout>
于 2019-05-09T13:17:25.107 回答
8

您可以为不同的屏幕使用不同的布局来实现相同的效果。假设您希望EditText填充可用宽度但不超过 480dp。如下定义您的布局:

布局/my_layout.xml:

<?xml version="1.0" encoding="utf-8"?>
<EditText xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"/>

layout-w480dp/my_layout.xml:(在这里选择你的最大宽度作为限定符)

<?xml version="1.0" encoding="utf-8"?>
<EditText xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="480dp"
          android:layout_height="wrap_content"/>
于 2016-08-19T10:27:34.697 回答