如何放置 drawableLeftAppCompatButton 的按钮文本,如下图所示?

android - 自定义 AppCompatButton drawableLeft?-LMLPHP

我尝试应用 paddingLeft ,但文本正在从 drawable 向右移动。

<android.support.v7.widget.AppCompatButton
                android:id="@+id/filterBy"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:drawableLeft="@drawable/ic_btn_filter"
                android:paddingLeft="20dp"
                android:text="@string/filter_by"
                android:textAllCaps="false" />

到目前为止,结果看起来像

android - 自定义 AppCompatButton drawableLeft?-LMLPHP

布局
   <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@id/profileHeader"
            android:layout_marginLeft="5dp"
            android:layout_marginRight="5dp"
            android:layout_marginTop="10dp">

            <android.support.v7.widget.AppCompatButton
                android:id="@+id/findFriends"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:drawableLeft="@drawable/ic_btn_search"
                android:text="@string/find_friends"
                android:textAllCaps="false" />

            <android.support.v7.widget.AppCompatButton
                android:id="@+id/filterBy"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:drawableLeft="@drawable/ic_btn_filter"
                android:text="@string/filter_by"
                android:textAllCaps="false" />
      </LinearLayout>

以及使事情变得清晰的解释性要求。



请问有什么建议吗?

最佳答案


 android:drawablePadding=""

关于android - 自定义 AppCompatButton drawableLeft?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34015022/

10-08 21:39