作为问题,有人知道如何在按钮的图标和文本之间添加分隔符吗?查看下面的演示图像。提前致谢

android - 如何在按钮内的图标和文本之间添加分隔符?-LMLPHP

编辑:答案

<LinearLayout
        android:id="@+id/btn_facebook"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/rectangle_background"
        android:orientation="horizontal"
        android:minHeight="@dimen/standard_height"
        android:gravity="center_vertical"
        android:weightSum="4" >

        <ImageView
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:src="@drawable/icon_whatever" />

        <View
            android:layout_width="2dp"
            android:layout_height="match_parent"
            android:background="#AAFFFFFF"/>

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="3"
            android:gravity="center"
            android:text="Sign up with Facebook"
            android:textColor="@android:color/white"
            android:textSize="16sp"/>

    </LinearLayout>

最佳答案

尝试这样:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:background="@android:color/white"
android:layout_height="wrap_content"
android:orientation="horizontal">


<ImageView
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:background="#1E90FF"
    android:src="@android:drawable/alert_dark_frame"
    android:layout_weight="0.1" />

<LinearLayout
    android:layout_width="0dp"
    android:layout_weight="0.007"
    android:orientation="vertical"
    android:background="#FF8C00"
    android:layout_margin="5dp"
    android:layout_height="match_parent">

</LinearLayout>


<TextView
    android:layout_width="0dp"
    android:text="Sign Up with Facebook"
    android:layout_height="wrap_content"
    android:textSize="23sp"
    android:paddingLeft="5dp"
    android:layout_weight="0.4" />
</LinearLayout>

09-13 12:19