2013-07-03 131 views
2

我正在用自定義背景製作EditText字段,但輸入文本將比字段本身更長。此外,文本需要在一行。EditText內部的水平文本滾動

我的想法是在線條到達場地末端時使文字「向左移動」。我在一些應用程序中看到這是可能的。

我搜索了答案,但他們沒有迴應這個具體問題。之後,我聯合幾個人我想通過這種方式來解決問題:

<EditText 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:background="@drawable/edit_text" 
     android:textColor="#FFFFFF" 
     android:paddingLeft="5dp" 
     android:maxLines="1" 
     android:maxLength="25" 
     android:scrollHorizontally="true"/> 

但是,當我輸入文字,它達到的EditText字段的末尾時,它舒展我的領域(「@繪製/ edit_text」特別是),直到我達到25個字符。

另外,當我將layout_width更改爲某個特定值時,到達結束時文本將進入第二行(即使maxLines仍爲1)。

回答

2

我明白了。關鍵是你需要把EditText放在RelativeLayout中。現在它正在工作。

<RelativeLayout 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:background="@drawable/edit_text"> 
     <EditText 
      android:layout_width="120dp" 
      android:layout_height="21dp" 
      android:layout_alignParentLeft="true" 
      android:layout_alignParentTop="true" 
      android:layout_margin="6dp" 
      android:background="#00000000" 
      android:imeOptions="actionDone" 
      android:inputType="textPersonName" 
      android:maxLength="20" 
      android:maxLines="1" 
      android:paddingLeft="2dp" 
      android:textColor="#FFFFFF"/> 
    </RelativeLayout> 
+0

我無法得到這個工作。 – jcaruso

0

把你的EditText的HorizontalScrollView內,它的工作原理..

  <HorizontalScrollView 
       android:id="@+id/rlEmail" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:scrollHorizontally="true" 
       android:layout_alignLeft="@+id/etPhone" 
       android:layout_alignRight="@+id/imgBtnEdit" 
       android:layout_below="@+id/etPhone" > 
       <EditText 
        android:id="@+id/etEmail" 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:layout_alignParentLeft="true" 
        android:layout_alignParentTop="true" 
        android:ems="10" 
        android:enabled="false" 
        android:focusable="false" 
        android:text="[email protected]" 
        android:maxLines="1" 
        android:singleLine="true" 
        android:scrollHorizontally="true" /> 
      </HorizontalScrollView> 
+1

這工作。事實上,這是唯一有效的工作。我不需要enabled =「false」屬性,但其他所有內容都是。 – Gail

2

它添加

android:scrollHorizontally="true" 
android:singleLine="true" 
android:gravity="right|center_vertical" 

<EditText 
     android:background="@drawable/sk" 
     android:id="@+id/ed" 
     android:textSize="@dimen/sed" 
     android:textColor="@color/tc" 
     android:scrollHorizontally="true" 
     android:singleLine="true" 
     android:gravity="right|center_vertical" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" /> 

我的EditText

後工作
+1

sIngleLine現已棄用 – anivaler

+1

我知道,但刪除後,它不起作用,我測試了它在三星Galaxy Tab和s3星系明星親 –

+0

我的問題是:爲什麼我需要使用「\\ |」在String.split方法中,但只有「|」在String.replace或String.indexOf方法中 –

5

經過一番研究,我發現它工作。

使用android:inputType="text"裏面EditText爲我工作。

希望這會幫助別人,並會節省您的時間:)

+0

對!這將防止'\ n'字符使其成爲一行文本。這應該工作。 –