2

我需要创建占布局宽度 70% 的文本字段(在线性布局中)。我使用这段代码:

<EditText
    android:id="@+id/phone"
    android:layout_width="fill_parent"
    android:layout_weight=".7"
    android:layout_height="wrap_content"
    android:inputType="phone" >

问题是,在这种情况下,高度也占布局高度的 70%——但我不需要更改它,只希望它是“wrap_content”。有什么好的解决办法吗?

UPD: 如果我创建一个新的水平方向的线性布局并将我的文本字段放在其中,这会是一个好的解决方案吗?或者更优雅的东西?

UPD(2): 我希望它如下所示,但不使用 marginLeft 和 marginRgiht,这会在不同的屏幕分辨率上给出不同的百分比

在此处输入图像描述

4

4 回答 4

6

weightSum如果您打算使用权重,则需要在控件的父级上进行设置。所以,是的,把它放在一个 LinearLayout 中,并为布局提供适当的参数。另外,请记住,权重只影响额外空间,因此您要将宽度设置为 0dp,因此整个可用空间都被视为“额外”空间。最后,我认为使用整数表示重量可能会更快,但我不确定。

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:weightSum="4">

    <EditText
        android:id="@+id/phone"
        android:layout_width="0dp"
        android:layout_weight="3"
        android:layout_height="wrap_content"
        android:inputType="phone" />

</LinearLayout>

更新: 如果您也希望它居中,则在左侧和右侧包括一些间隔视图,并具有适当的权重:

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:weightSum="1" >

    <View
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight=".15" />

    <EditText
        android:id="@+id/phone"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight=".7"
        android:inputType="phone" />

    <View
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight=".15" />

</LinearLayout>
于 2012-05-24T08:31:44.930 回答
2

在此处输入图像描述 嗨根据您的代码,如果您要设置权重意味着通常我们不应该设置布局宽度来包装内容或填充父级。它应该为零。所以应该是这样的。

<EditText
    android:id="@+id/phone"
    android:layout_width="0dip"
    android:layout_weight=".7"
    android:layout_height="wrap_content"
    android:inputType="phone" >

否则,如果您尝试使用以下代码,则意味着您将得到它像图像一样

<LinearLayout
    android:layout_width="fill_parent"
    android:orientation="vertical"
    android:layout_margin="30dip"
    android:layout_height="wrap_content">

    <EditText
        android:id="@+id/phone"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:inputType="phone" />

    <EditText
        android:id="@+id/phone"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:inputType="phone" />

</LinearLayout>

如上图

于 2012-05-24T09:06:32.407 回答
0

为 Editext提供Margin Layout_left/Right填充。

<EditText
android:id="@+id/phone"
android:layout_width="fill_parent"
android:layout_weight=".7"
android:layout_height="wrap_content"
android:layout_marginLeft="25dp"
android:inputType="phone" >
于 2012-05-24T08:27:42.083 回答
0

虽然可以使用 LinearLayout 权重来解决,但也可以使用ConstraintLayout 指南来实现。只需添加两个具有 15% 和 85% 位置值的垂直准线,并将 EditText 宽度约束到这些准线:

布局编辑器

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <EditText
        android:id="@+id/editText"
        style="@android:style/Widget.Holo.Light.EditText"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:text="1st EditText"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintStart_toStartOf="@+id/startGuideline"
        app:layout_constraintEnd_toStartOf="@+id/endGuideline" />

    <EditText
        android:id="@+id/editText2"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:text="2nd EditText"
        app:layout_constraintTop_toBottomOf="@+id/editText"
        app:layout_constraintStart_toStartOf="@+id/startGuideline"
        app:layout_constraintEnd_toStartOf="@+id/endGuideline" />

    <android.support.constraint.Guideline
        android:id="@+id/startGuideline"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_percent="0.15" />

    <android.support.constraint.Guideline
        android:id="@+id/endGuideline"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_percent="0.85" />

</android.support.constraint.ConstraintLayout>
于 2017-11-06T08:18:57.740 回答