如何使 TextView 的高度与 EditText 的高度相同?

发布于 2024-10-20 16:44:13 字数 2416 浏览 2 评论 0原文

我有一个包含 3 行的视图,其中一行有 2 个 TextView,另外 2 行有 1 个 TextView 和 1 个 EditText。我怎样才能使所有这些行具有相同的高度,并且替换一行中的 EditText 的 TextView 的大小与其他 EditText 的大小相同?

问候, 埃迪

示例代码在这里: 我希望第一行中的第二个 TextView 具有与以下行中的 EditText 相同的大小(视图本身和其中文本的大小)。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    >
<LinearLayout
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        >
    <TextView
            android:text="Datum:"
            android:layout_width="60dip" 
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            />
    <TextView
            android:id="@+id/datum"
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            android:layout_alignParentRight="true"
            />
</LinearLayout>
<LinearLayout
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        >
    <TextView
            android:text="Zweck:"
            android:layout_width="60dip" 
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            />
    <EditText
            android:id="@+id/title"
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            android:layout_alignParentRight="true"
            android:inputType="textNoSuggestions"
            />
</LinearLayout>
<LinearLayout
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        >
    <TextView
            android:text="Betrag:"
            android:layout_width="60dip" 
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            />
    <EditText
            android:id="@+id/value"
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            android:inputType="numberDecimal|textNoSuggestions"
            android:layout_alignParentRight="true"
            />
</LinearLayout>

I have a view with 3 lines, in one of them with 2 TextViews, in the other 2 one TextView and one EditText. How can I have the same height for all those lines, and the size of the TextView which replaces an EditText in one line have the same size as the other EditTexts?

Regards,
Eddie

Example code here:
I would like to have the 2nd TextView in the first line to have the same size (of the view itself and of the text within it) as for the EditText in the following lines.

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    >
<LinearLayout
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        >
    <TextView
            android:text="Datum:"
            android:layout_width="60dip" 
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            />
    <TextView
            android:id="@+id/datum"
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            android:layout_alignParentRight="true"
            />
</LinearLayout>
<LinearLayout
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        >
    <TextView
            android:text="Zweck:"
            android:layout_width="60dip" 
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            />
    <EditText
            android:id="@+id/title"
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            android:layout_alignParentRight="true"
            android:inputType="textNoSuggestions"
            />
</LinearLayout>
<LinearLayout
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        >
    <TextView
            android:text="Betrag:"
            android:layout_width="60dip" 
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            />
    <EditText
            android:id="@+id/value"
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            android:inputType="numberDecimal|textNoSuggestions"
            android:layout_alignParentRight="true"
            />
</LinearLayout>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

花之痕靓丽 2024-10-27 16:44:13

你能发布你的示例代码吗?

您可以通过使用 android:layout_width="wrap_content" 和/或 android:width="300dp" (高度相同)来使用不同的尺寸。还要检查边距和填充。

如果您需要更加动态,您可以考虑 android:layout_weight 即让 2 个按钮具有相等的宽度并填充您要设置的父视图的水平空间:
android:layout_width="wrap_content" android_layout:weight="0.5"

编辑:它们似乎大小相同(填充左侧描述留下的空间)。您想增加 TextView 的字体大小吗?

您还可以在所有三列中使用 EditText,但将第一列设置为 android:editable="false"。

Can you post your example code?

You can use distinct sizes by using android:layout_width="wrap_content" and /or android:width="300dp" (same for height). Also check margins and paddings.

If you need to be more dynamic, you might consider android:layout_weight i.e. for letting 2 buttons have equal width and fill the horizontal space of the parent view you would set:
android:layout_width="wrap_content" android_layout:weight="0.5".

Edit: They seem to be all the same size (filling the space left by the description on the left). Do you want to increase the font size of the TextView?

You could also use an EditText in all three columns but set the first to android:editable="false".

柠檬 2024-10-27 16:44:13

您可以使用 android:layout_height="match_parent"

You can use android:layout_height="match_parent"

南七夏 2024-10-27 16:44:13

android:editable="false" 已弃用。

使用 android:inputType="none" 代替

android:editable="false" is deprecated.

Use android:inputType="none" instead

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文