-3

ここに画像の説明を入力してください xmlで次のコードを使用しています。編集テキストに背景を付けたいのですが、背景画像は約400 * 190ピクセルです。編集テキストは1行しか占めておらず、他の部分では何も起こりません。

Edittextを背景画像を占めるように設定する方法。これにより、その一部をクリックすると、キーボードがポップアップ表示されます。

 <RelativeLayout
    android:id="@+id/noteslayout"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="5dp"
    android:layout_marginLeft="5dp"
    android:layout_marginRight="5dp" 
    android:background="@drawable/edittextnotes" > 

    <EditText
        android:layout_marginTop="5dp"
        android:layout_marginLeft="5dp"
        android:layout_marginRight="5dp"
        android:id="@+id/notes"         
        android:maxLines="5"
        android:capitalize="sentences"
        android:layout_width="250dp"
        android:layout_height="wrap_content"
        android:imeOptions="actionDone" />

</RelativeLayout>

前もって感謝します

4

2 に答える 2

0

以下のようEditTextに、以外の背景だけを設定してみませんか。RelativeLayout

  <EditText
     android:layout_marginTop="5dp"
     android:layout_marginLeft="5dp"
     android:layout_marginRight="5dp"
     android:id="@+id/notes"         
     android:maxLines="5"
      android:lines="5"       <---- set this lines property
     android:background="@drawable/edittextnotes"    <----See this.
     android:capitalize="sentences"
     android:layout_width="250dp"
     android:layout_height="wrap_content"
     android:imeOptions="actionDone"/>
于 2013-01-19T07:45:18.077 に答える
0

これを試して、

<RelativeLayout
android:id="@+id/noteslayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dip"
android:background="@drawable/edittextnotes" > 

<EditText

    android:id="@+id/notes"         
    android:maxLines="5"
    android:capitalize="sentences"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:imeOptions="actionDone" />

于 2013-01-19T07:55:08.620 に答える