Android笔记之图文混排布局

让图片在文字左边
android:drawableLeft
="@drawable/activity_icon"
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="65.0dip"
    android:background="@drawable/tool_box_fragment_bg_selector" >

    <TextView
        android:id="@+id/toolbox_title"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:drawableLeft="@drawable/activity_icon"
        android:gravity="center"
        android:paddingLeft="15dp"
        android:singleLine="true"
        android:text="经典推荐"
        android:textColor="@color/main_color"
        android:textSize="16.0sp"
        android:textStyle="bold" />

</RelativeLayout>

 


Done!

Android笔记之图文混排布局,,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。