Giter VIP home page Giter VIP logo

mixturetextview's Introduction

MixtureTextView

支持Android图文混排、文字环绕图片等效果

效果图

  • 一般的展示


  • 在ListView中


  • 动态图

使用

  • 代码设置属性
mixtureTextView = 
	(MixtureTextView)findViewById(R.id.id_mixtureTextview);
mixtureTextView.
	setTextColor(0xffff6f2d);//设置字体颜色
mixtureTextView.
	setTextSize(TypedValue.COMPLEX_UNIT_SP, 14);//设置字体大小
mixtureTextView.
	setText(getString(R.string.text1));//设置文本
  • 布局文件中通过属性设置
 <com.zhy.view.MixtureTextView
	android:text="@string/text2"
	android:textColor="#ff5d75"
	android:textSize="14sp"
	...其他属性
	>
</com.zhy.view.MixtureTextView>
  • 上述demo的布局文件
<com.zhy.view.MixtureTextView
        android:id="@+id/id_mixtureTextview"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#f4f3ff"
        android:text="@string/text2"
        android:textColor="#ff5d75"
        android:textSize="14sp">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="100dp"
            android:layout_marginTop="100dp"
            android:src="@drawable/icon"/>

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/icon"/>


        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:src="@drawable/android2"/>

</com.zhy.view.MixtureTextView>

mixturetextview's People

Contributors

hongyangandroid avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.