這是我的佈局圖像。我想設置Edittext的文字不要換行按鈕。我如何設置這個。 這是鏈接,圖像敞開 http://screencast.com/t/fgD5a84HMC設置按鈕裏面edittext android
This is my layout
<RelativeLayout
android:id="@+id/relativeLayout2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:background="@drawable/bg_headerbar" >
<Button
android:id="@+id/Button1"
android:layout_width="60dip"
android:layout_height="36dip"
android:layout_alignParentLeft="true"
android:layout_marginBottom="6dip"
android:layout_marginLeft="4dip"
android:layout_marginTop="6dip"
android:gravity="center_vertical|center_horizontal"
android:shadowDx="0"
android:shadowDy="-1"
android:shadowRadius="0.1"
>
</Button>
<EditText
android:id="@+id/editText1"
android:layout_width="fill_parent"
android:layout_height="27dip"
android:layout_centerHorizontal="true"
android:layout_marginLeft="7dip"
android:layout_marginRight="10dip"
android:layout_marginTop="9dip"
android:layout_toLeftOf="@+id/imageButton1"
android:layout_toRightOf="@+id/Button1"
android:background="@drawable/rounded_edittext"
android:imeOptions="actionDone"
android:padding="5dip"
android:singleLine="true"
android:text=""
android:textSize="12dip" >
</EditText>
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="10dip"
android:layout_marginTop="6dip"
android:background="@drawable/btn_cancel" >
</ImageButton>
<ImageButton
android:id="@+id/imageButton5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/editText1"
android:layout_centerVertical="true"
android:layout_marginRight="5dip"
android:background="@drawable/icn_inputclear"
/>
</RelativeLayout>
的代碼正確地張貼的圖片。 –
@kelsi我們可以從您的系統訪問圖像嗎?請複製並粘貼它。 –
sory for that:http://screencast.com/t/fgD5a84HMC –