程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-表格行中編輯框的問題

android-表格行中編輯框的問題

編輯:編程綜合問答
表格行中編輯框的問題

在表格行中有一個文本框和一個編輯框,問題是當我在編輯框中輸入字符時,編輯框中不顯示我輸入的內容,好像是編輯框寬度的問題。那麼如何實現在輸入字符時編輯框可以多行顯示內容或者出現滾動條呢?
代碼是這樣的:

<TableLayout
    android:id="@+id/table"
    android:layout_height="wrap_content" 
    android:layout_width="fill_parent"
    android:paddingTop="30dip"
    android:paddingLeft="10dip"
    android:paddingRight="10dip"
    android:layout_below="@id/banner" >
    <TableRow>
        <TextView
            android:id="@+id/username_label"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="#fff"
            android:textSize="18dip" 
            android:text="Username"
             />
        <EditText
            android:id="@+id/entry1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" />
    </TableRow>

    <TableRow>
        <TextView
            android:id="@+id/password_label"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:textColor="#fff"
            android:textSize="18dip" 
            android:text="Password" />
        <EditText
            android:id="@+id/entry2"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:password="true" />
    </TableRow>     
</TableLayout>

最佳回答:


希望這個方法能幫上你:

<TableLayout android:id="@+id/table" android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:stretchColumns="1"
    android:layout_below="@+id/banner">
    <TableRow>
        <TextView android:id="@+id/username_label"
            android:layout_width="wrap_content"     android:layout_height="wrap_content"
            android:textColor="#fff" android:textSize="18dip" android:text="Username" />
        <EditText android:id="@+id/entry1" android:layout_width="fill_parent"
            android:layout_height="wrap_content" />
    </TableRow>

    <TableRow>
        <TextView android:id="@+id/password_label"
            android:layout_width="fill_parent" android:layout_height="wrap_content"
            android:textColor="#fff" android:textSize="18dip" android:text="Password" />
        <EditText android:id="@+id/entry2" android:layout_width="fill_parent"
            android:layout_height="wrap_content" android:password="true" />
    </TableRow>
</TableLayout>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved