Установка минимальной высоты и веса макета на редактирование текста Android - PullRequest
3 голосов
/ 10 января 2012

У меня есть форма с EditText, который я хочу заполнить все оставшееся пространство. Это работает, но когда вы нажимаете, чтобы редактировать текст (в эмуляторе), он уменьшает высоту EditText, которую я на самом деле хочу, но только до определенной точки. Когда вы нажимаете клавишу на клавиатуре, она вызывает окно с предложением слов и уменьшает высоту еще дальше, чтобы она больше не читалась. Я попытался использовать атрибут android: minHeight, но он, похоже, ничего не делает, когда я также использую android: layout_weight. Вот мой макет:

<?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:background="@raw/background"
    android:orientation="vertical"
    android:padding="15dp" >

    <LinearLayout
        android:id="@+id/linearLayout1"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
        <TextView
            android:id="@+id/tvTitle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Title" />
        <TextView
            android:id="@+id/tvDate"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="right" />
    </LinearLayout>
    <EditText
        android:id="@+id/etTitle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <requestFocus />
    </EditText>

    <LinearLayout
        android:id="@+id/linearLayout2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="20dp"
        android:paddingRight="20dp" >

        <TextView
            android:id="@+id/tvFuture"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Set for future time?"
            android:layout_gravity="center_vertical|left"
            android:layout_weight="1" />

        <CheckBox
            android:id="@+id/cbFuture"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical|right" />
    </LinearLayout>

    <TextView
        android:id="@+id/tvBody"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Body" />

    <EditText
        android:id="@+id/etBody"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:isScrollContainer="true"
        android:gravity="top"
        android:minHeight="100dp"
        android:layout_weight="1" />

    <Button
        android:layout_marginTop="10dp"
        android:id="@+id/btnOK"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:width="100dp"
        android:text="OK" />

</LinearLayout>

Правящий текст, о котором идет речь, это etBody. Спасибо за любую помощь!

1 Ответ

3 голосов
/ 10 января 2012

Похоже, что эта строка в вашем " etBody " EditText

android:isScrollContainer="true"

Я считаю, что это заставляет EditText изменять свой размер, чтобы соответствовать содержимому внутри него.Поэтому, поскольку внутри вас ничего нет, оно исчезает.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...