2017-06-04 33 views

回答

0

這裏是工作代碼:

<?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並進行點擊

enter image description here

+0

非常感謝你 –

0

在LinearLayout中一個接一個地定位它們,你很好。你不需要它在裏面。結構如下:

<LinearLayout> 
    <Button/> 
    <EditText/> 
</LinearLayout> 
+0

我的意思是一個形式不是文字,只是增加了一個形象,你可以檢查出來 –

+0

見編輯答案 –

+0

好嗎?但我不會在它旁邊的文本字段 –

1

設置圖標在該圖標上寫下代碼。

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; 
      } 
     }); 
相關問題