我怎樣才能創建一個文本字段,像Whatsapp的笑臉按鈕左側的按鈕,我也希望我的文本在按鈕後啓動。 如何將imageButton放置在文本框內?
回答
這裏是工作代碼:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<!-- CONTENT -->
<!-- BOTTOM INPUT SECTION -->
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@android:color/darker_gray"
android:padding="8dp">
<ImageButton
android:id="@+id/button_group"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:src="@drawable/ic_group"
android:background="@android:color/transparent"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@id/button_group"
android:layout_marginRight="8dp"
android:background="@android:color/white"
android:padding="8dp">
<ImageButton
android:id="@+id/button_emoji"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:src="@drawable/ic_smile_face"
android:background="@android:color/transparent"/>
<ImageButton
android:id="@+id/button_camera"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:src="@drawable/ic_camera"
android:background="@android:color/transparent"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/button_emoji"
android:layout_toLeftOf="@id/button_camera"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_centerVertical="true"
android:hint="Type a message"
android:background="@null" />
</RelativeLayout>
</RelativeLayout>
</RelativeLayout>
輸出:通過EditText上的drawableLeft並進行點擊
非常感謝你 –
在LinearLayout中一個接一個地定位它們,你很好。你不需要它在裏面。結構如下:
<LinearLayout>
<Button/>
<EditText/>
</LinearLayout>
我的意思是一個形式不是文字,只是增加了一個形象,你可以檢查出來 –
見編輯答案 –
好嗎?但我不會在它旁邊的文本字段 –
設置圖標在該圖標上寫下代碼。
editText.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
if (event.getRawX() <= (back.getCompoundDrawables()[0].getBounds().width())) {
// Your Code
return true;
}
return false;
}
});
- 1. 如何通過xml將文本放在imagebutton上
- 2. 如何在邊框中放置文本
- 3. 在ImageButton中設置文本
- 4. Zend Framework - 如何將文本右鍵放置到文本框中?
- 5. 如何將ImageButton放置在x,y位置?
- 6. 如何在文本框內放置背景圖像
- 7. 如何將TextView放在ImageButton的中心?
- 8. 如何將文本框放置在dojo網格中?
- 9. 如何將光標放置在文本框tkinter的左側?
- 10. 在文本框中放置文本
- 11. 如何將文本放置在頂部的EditText小部件內?
- 12. Rebol Draw:如何在文本框中居中放置文本?
- 13. 如何將文本框置於C中的邊框內#
- 14. 如何將文本放在邊框文本旁邊?
- 15. 如何將文本內容放入div
- 16. 如何將文本中的行文本放入文本框?
- 17. 如何將文本框放置在指定位置的圖像上?
- 18. 如何放大文本框
- 19. 如何填充放置在文本框旁邊的鏈接的文本框?
- 20. 將文本置於導航框內
- 21. 如何將文本框內的圖像?
- 22. 如何將ListView放置在頁面內?
- 23. 如何在文本框中放置說明文本並將焦點放在字段上?
- 24. Matplotlib放置文本例如suptitle框架
- 25. 將文本框縮放到
- 26. 如何在Android中單擊ImageButton時設置文本?
- 27. 如何將vb文本框設置爲「緩衝區」的內容?
- 28. 如何在div的左上角邊框內放置一個文本
- 29. 如何在GridView文本框內放置必需的字段驗證器
- 30. 如何在密碼文本框內放置忘記的密碼鏈接
使用drawableLeft和textalignment來啓動。 –
請你可以告訴我們你到目前爲止嘗試過什麼嗎? – marcellothearcane
@RajeshTiwari但它不會點擊 –