zoukankan      html  css  js  c++  java
  • 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!
  • 相关阅读:
    vue1.0
    网络抓包(四)
    物联网框架ServerSuperIO
    Solrcloud(Solr集群)
    机器学习1
    TCP/IP协议族(一)
    ElasticSearch(简称ES)
    工具
    线程本地变量的使用
    Features of Spring Web MVC
  • 原文地址:https://www.cnblogs.com/xingyyy/p/3617269.html
Copyright © 2011-2022 走看看