# TextStickerView **Repository Path**: cwwei_admin/TextStickerView ## Basic Information - **Project Name**: TextStickerView - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-18 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 文本贴图处理控件:可以拖动,旋转,缩放,删除,选择文本颜色,支持多行文本编辑 # 预览1 ![image](https://github.com/wujie1314520/TextStickerView/blob/master/screenshot/sr1.gif) # 预览2 ![image](https://github.com/wujie1314520/TextStickerView/blob/master/screenshot/sr2.gif) # 使用 ```java TextStickerView mTextStickerView = new TextStickerView(this, null); mTextList.add(mTextStickerView); RelativeLayout.LayoutParams layoutparams = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT); layoutparams.addRule(RelativeLayout.ALIGN_PARENT_TOP); mTextStickerView.setLayoutParams(layoutparams); mRlContainer.addView(mTextStickerView); ```