提前感谢您的时间。
我想重现这个Android按钮,但遗憾的是我花了好几个小时才弄明白,没有结果!
图片:http://i.stack.imgur.com/m0mSw.jpg
PS:我想要左边的图标/背景和右边的TITLE,不需要事实计数器。
如果您有任何想法,请随时帮助我。
再次感谢。
答案 0 :(得分:0)
尝试RelativeLayout
就像那样简单
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/holo_blue_light">
<ImageView
android:id="@+id/icon"
android:layout_width="80dp"
android:layout_height="80dp"
android:padding="24dp"
android:src="@android:drawable/ic_dialog_info"
android:background="@android:color/holo_blue_dark"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/icon"
android:layout_margin="8dp"
android:text="Button text"
android:textColor="@android:color/white"
android:textAppearance="@android:style/TextAppearance.Holo.Medium"/>
</RelativeLayout>