EditText

时间:2017-04-20 10:19:11

标签: android xml android-edittext

当我设置具有多行的EditText文本然后EditText高度正在改变时,我正在创建一个具有EditText的UI。我在XML中修改了EditText高度。

这是我的XML:

<?xml version="1.0" encoding="utf-8"?> <com.daimajia.swipe.SwipeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/swipe"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:clickToClose="true">

    <LinearLayout
        android:id="@+id/bottom_wrapper"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:tag="Bottom1">

        <com.ventup.view.RobotoTextView
            android:id="@+id/delete"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:background="@color/red"
            android:gravity="center"
            android:paddingLeft="@dimen/activity_horizontal_margin"
            android:paddingRight="@dimen/activity_horizontal_margin"
            android:text="@string/action_delete"
            android:textColor="@color/white" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:weightSum="6">

        <com.ventup.view.RobotoEditText
            android:id="@+id/etExercise"
            style="@style/EditTextWorkOutSheet"
            android:layout_width="0dp"
            android:layout_height="300px"
            android:layout_weight="1.7"
            android:imeOptions="actionNext"
            android:inputType="textCapSentences|textMultiLine"
            android:maxLength="2000"

            android:nextFocusRight="@+id/etTampo"
            android:scrollHorizontally="false"
            android:singleLine="true" />

        <com.ventup.view.RobotoEditText
            android:id="@+id/etTampo"
            style="@style/EditTextWorkOutSheet"
            android:layout_width="0dp"
            android:layout_height="300px"
            android:layout_weight="1.3"
            android:inputType="textCapSentences|textMultiLine"
            android:imeOptions="actionNext"
            android:nextFocusRight="@+id/etRest"
            android:singleLine="true" />

        <com.ventup.view.RobotoEditText
            android:id="@+id/etRest"
            style="@style/EditTextWorkOutSheet"
            android:layout_width="0dp"
            android:layout_height="300px"
            android:layout_weight="1"
            android:inputType="textCapSentences|textMultiLine"
            android:imeOptions="actionNext"
            android:nextFocusRight="@+id/etSet"
            android:singleLine="true" />

        <com.ventup.view.RobotoEditText
            android:id="@+id/etSet"
            style="@style/EditTextWorkOutSheet"
            android:layout_width="0dp"
            android:layout_height="300px"
            android:layout_weight="1"
            android:inputType="textCapSentences|textMultiLine"
            android:imeOptions="actionNext"
            android:nextFocusRight="@+id/etReps"
            android:singleLine="true" />

        <com.ventup.view.RobotoEditText
            android:id="@+id/etReps"
            style="@style/EditTextWorkOutSheet"
            android:layout_width="0dp"
            android:layout_height="300px"
            android:layout_weight="1"

            android:imeOptions="actionDone"
            android:singleLine="true" />
    </LinearLayout> </com.daimajia.swipe.SwipeLayout>

任何建议都将不胜感激,谢谢。

This is my layout

0 个答案:

没有答案