当我滚动编辑文本我想看到最后一行时,我在linearlayout下声明edittext

时间:2014-02-24 12:20:18

标签: android android-edittext

//我在linearlayout下声明edittext当我滚动编辑文本我想看到最后一行,但是当我滚动它没有得到最后一行时如何在我移动时查看布局下的所有文本。我想要删除空间正面和背面空间到画廊如何删除     我附上了截屏enter image description here

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <EditText
        android:id="@+id/edittext"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginBottom="20dp"
        android:layout_marginLeft="15dp"
        android:layout_marginRight="15dp"
        android:background="#FFFFFF"
        android:focusable="false"
        android:textColor="#666669"
        android:textSize="20dp"
        android:textStyle="normal" />

    <LinearLayout
        android:id="@+id/llexport"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_weight="4" >

        <SeekBar
            android:id="@+id/seekbardown"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:progressDrawable="@drawable/styled_progress"
            android:thumb="@drawable/playprogressionhandle"
            android:thumbOffset="-1px" />
    </LinearLayout>

</RelativeLayout>

2 个答案:

答案 0 :(得分:0)

//在您的线性布局上方执行您的edittext

 <EditText
            android:id="@+id/edittext"
android:layout_above="android:id="@+id/llexport"

.....

//to show last text from your edittext
android:paddingBottom="50dp"

答案 1 :(得分:0)

请检查以下代码,然后尝试使用它而不是编辑文字。

<EditText
            android:id="@+id/edittext"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_above="android:id="@+id/llexport"
            android:paddingBottom="5dp"
            android:layout_marginLeft="15dp"
            android:layout_marginRight="15dp"
            android:background="#FFFFFF"
            android:focusable="false"
            android:textColor="#666669"
            android:textSize="20dp"
            android:textStyle="normal" />