- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Android编程中TextView宽度过大导致Drawable无法居中问题解决方法由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
本文实例讲述了Android编程中TextView宽度过大导致Drawable无法居中问题解决方法。分享给大家供大家参考,具体如下:
在做项目的时候,很多时候我们都要用到文字和图片一起显示,一般设置TextView的DrawableLeft、DrawableRight、DrawableTop、DrawableBottom就行了。但是有一种情况是当TextView的熟悉是fill_parent或者使用权重的时候并且设置了起Gravity的ceter的时候,Drawable图片是无法一起居中的,为了解决其,我们一般再套一层布局,然后设置TextView的熟悉是wrap_content,但是有时候嵌套过多的布局的时候,有可能发生StackOverFlow,所以必须要优化,下面说一下其中的一个解决方案。先上图 。
这个解决方案很粗糙,局限性很大,文字不能换行,换行之后就不准了,下面是源码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
package
com.example.testandroid;
import
java.lang.ref.WeakReference;
import
android.content.Context;
import
android.graphics.Bitmap;
import
android.graphics.BitmapFactory;
import
android.graphics.Canvas;
import
android.graphics.Color;
import
android.graphics.Rect;
import
android.util.AttributeSet;
import
android.view.MotionEvent;
import
android.widget.TextView;
public
class
DrawableTextView
extends
TextView {
private
WeakReference<Bitmap> normalReference;
private
WeakReference<Bitmap> pressReference;
private
WeakReference<Bitmap> showReference;
private
int
normalColor = Color.WHITE, pressColor = Color.WHITE;
private
String text;
private
int
textWidth =
0
;
private
int
textHeight =
0
;
public
DrawableTextView(Context context) {
super
(context);
}
public
DrawableTextView(Context context, AttributeSet attrs) {
super
(context, attrs);
}
public
DrawableTextView(Context context, AttributeSet attrs,
int
defStyle) {
super
(context, attrs, defStyle);
}
@Override
protected
void
onFinishInflate() {
super
.onFinishInflate();
initText();
}
private
void
initText() {
text =
super
.getText().toString();
initVariable();
}
/**
* 初始化,测量Textview内容的长度,高度
*/
private
void
initVariable() {
textWidth = (
int
) (getPaint().measureText(text));
final
Rect rect =
new
Rect();
getPaint().getTextBounds(text,
0
,
1
, rect);
textHeight = rect.height();
}
/**
* 设置TextView的内容
* @param text
*/
public
void
setText(String text) {
this
.text = text;
initVariable();
invalidate();
}
/**
* 获取TextView内容
*/
public
String getText() {
return
text;
}
/**
* 设置TextView的Drawable内容,目前仅支持DrawableLeft
* @param normalDrawableId
* DrawableLeft的normal状态Id
* @param pressDrawableId
* DrawableLeft的press状态的Id(没有press状态,请传-1)
*/
public
void
setDrawableLeftId(
final
int
normalDrawableId,
final
int
pressDrawableId) {
normalReference =
new
WeakReference<Bitmap>(BitmapFactory.decodeResource(getResources(), normalDrawableId));
if
(pressDrawableId != -
1
) {
pressReference =
new
WeakReference<Bitmap>(BitmapFactory.decodeResource(getResources(), pressDrawableId));
}
showReference = normalReference;
invalidate();
}
/**
* 设置TextView的Color
* @param normalColor
* TextView normal状态的Color值
* @param pressDrawableId
* TextView press状态的Color值(如果没有press状态,请传与normal状态的值)
*/
public
void
setTextColor(
final
int
normalColor,
final
int
pressColor) {
this
.normalColor = normalColor;
this
.pressColor = pressColor;
getPaint().setColor(normalColor);
initVariable();
}
@Override
protected
void
onDraw(Canvas canvas) {
if
(showReference !=
null
&& showReference.get() !=
null
) {
final
int
bitmapWidth = showReference.get().getWidth();
final
int
bitmapHeight = showReference.get().getHeight();
final
int
viewHeight = getHeight();
final
int
drawablePadding = getCompoundDrawablePadding();
final
int
start = (getWidth() - (bitmapWidth + drawablePadding + textWidth)) >>
1
;
canvas.drawBitmap(showReference.get(), start, (viewHeight >>
1
) - (bitmapHeight >>
1
), getPaint());
/**
* 注意改方法,第三个参数y,本人也被误导了好久,原来在画文字的时候,y表示文字最后的位置(不是下笔点的起始位置)
* 所以为什么 是TextView高度的一半(中间位置) + 文字高度的一半 = 文字居中
*/
canvas.drawText(text, start + drawablePadding + bitmapWidth, (viewHeight >>
1
) + (textHeight >>
1
), getPaint());
}
}
@Override
public
boolean
onTouchEvent(MotionEvent event) {
if
(event.getAction() == MotionEvent.ACTION_DOWN) {
if
(pressReference !=
null
&& pressReference.get() !=
null
) {
showReference = pressReference;
}
getPaint().setColor(pressColor);
}
else
if
(event.getAction() == MotionEvent.ACTION_UP) {
if
(normalReference !=
null
&& normalReference.get() !=
null
) {
showReference = normalReference;
}
getPaint().setColor(normalColor);
}
invalidate();
return
super
.onTouchEvent(event);
}
}
|
xml布局:
1
2
3
4
5
6
7
8
9
10
11
|
<
com.example.testandroid.DrawableTextView
android:id
=
"@+id/my_textview"
android:layout_width
=
"fill_parent"
android:layout_marginTop
=
"20dp"
android:background
=
"@drawable/text_selector"
android:drawablePadding
=
"8dp"
android:textColor
=
"@color/standard_orange"
android:layout_height
=
"wrap_content"
android:padding
=
"15dp"
android:textSize
=
"16sp"
android:text
=
"有Drawable的TextView"
/>
|
调用代码:
1
2
3
4
|
DrawableTextView drawableTextView = (DrawableTextView) getView().findViewById(R.id.my_textview);
drawableTextView.setDrawableLeftId(R.drawable.bg_btn_delete_normal, R.drawable.bg_btn_delete_pressed);
drawableTextView.setTextColor(getResources().getColor(R.color.standard_orange), getResources().getColor(R.color.standard_white));
drawableTextView.setText(
"我在动态修改Text啦"
);
|
其实还有更加方便的方法,下面朋友借鉴某个网友的代码(地址我就不知道了):
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
@Override
protected
void
onDraw(Canvas canvas) {
Drawable[] drawables = getCompoundDrawables();
if
(drawables !=
null
) {
Drawable drawableLeft = drawables[
0
];
if
(drawableLeft !=
null
) {
final
float
textWidth = getPaint().measureText(getText().toString());
final
int
drawablePadding = getCompoundDrawablePadding();
final
int
drawableWidth = drawableLeft.getIntrinsicWidth();
final
float
bodyWidth = textWidth + drawableWidth + drawablePadding;
canvas.translate((getWidth() - bodyWidth) /
2
,
0
);
}
}
super
.onDraw(canvas);
}
|
xml布局:
1
2
3
4
5
6
7
8
9
10
11
12
|
<com.example.testandroid.DrawableTextView
android:id=
"@+id/my_textview"
android:layout_width=
"fill_parent"
android:layout_marginTop=
"20dp"
android:background=
"@drawable/text_selector"
android:drawablePadding=
"8dp"
android:drawableLeft=
"@drawable/clear_edittext_selector"
android:textColor=
"@color/text_color_selector"
android:layout_height=
"wrap_content"
android:padding=
"15dp"
android:textSize=
"16sp"
android:text=
"有Drawable的TextView"
/>
|
嗯,自己写这个东西,也学到了一些东西,大家有什么更好的方法,大家可以讨论一下.
希望本文所述对大家Android程序设计有所帮助.
最后此篇关于Android编程中TextView宽度过大导致Drawable无法居中问题解决方法的文章就讲到这里了,如果你想了解更多关于Android编程中TextView宽度过大导致Drawable无法居中问题解决方法的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我通过 spring ioc 编写了一些 Rest 应用程序。但我无法解决这个问题。这是我的异常(exception): org.springframework.beans.factory.BeanC
我对 TestNG、Spring 框架等完全陌生,我正在尝试使用注释 @Value通过 @Configuration 访问配置文件注释。 我在这里想要实现的目标是让控制台从配置文件中写出“hi”,通过
为此工作了几个小时。我完全被难住了。 这是 CS113 的实验室。 如果用户在程序(二进制计算器)结束时选择继续,我们需要使用 goto 语句来到达程序的顶部。 但是,我们还需要释放所有分配的内存。
我正在尝试使用 ffmpeg 库构建一个小的 C 程序。但是我什至无法使用 avformat_open_input() 打开音频文件设置检查错误代码的函数后,我得到以下输出: Error code:
使用 Spring Initializer 创建一个简单的 Spring boot。我只在可用选项下选择 DevTools。 创建项目后,无需对其进行任何更改,即可正常运行程序。 现在,当我尝试在项目
所以我只是在 Mac OS X 中通过 brew 安装了 qt。但是它无法链接它。当我尝试运行 brew link qt 或 brew link --overwrite qt 我得到以下信息: ton
我在提交和 pull 时遇到了问题:在提交的 IDE 中,我看到: warning not all local changes may be shown due to an error: unable
我跑 man gcc | grep "-L" 我明白了 Usage: grep [OPTION]... PATTERN [FILE]... Try `grep --help' for more inf
我有一段代码,旨在接收任何 URL 并将其从网络上撕下来。到目前为止,它运行良好,直到有人给了它这个 URL: http://www.aspensurgical.com/static/images/a
在过去的 5 个小时里,我一直在尝试在我的服务器上设置 WireGuard,但在完成所有设置后,我无法 ping IP 或解析域。 下面是服务器配置 [Interface] Address = 10.
我正在尝试在 GitLab 中 fork 我的一个私有(private)项目,但是当我按下 fork 按钮时,我会收到以下信息: No available namespaces to fork the
我这里遇到了一些问题。我是 node.js 和 Rest API 的新手,但我正在尝试自学。我制作了 REST API,使用 MongoDB 与我的数据库进行通信,我使用 Postman 来测试我的路
下面的代码在控制台中给出以下消息: Uncaught DOMException: Failed to execute 'appendChild' on 'Node': The new child el
我正在尝试调用一个新端点来显示数据,我意识到在上一组有效的数据中,它在数据周围用一对额外的“[]”括号进行控制台,我认为这就是问题是,而新端点不会以我使用数据的方式产生它! 这是 NgFor 失败的原
我正在尝试将我的 Symfony2 应用程序部署到我的 Azure Web 应用程序,但遇到了一些麻烦。 推送到远程时,我在终端中收到以下消息 remote: Updating branch 'mas
Minikube已启动并正在运行,没有任何错误,但是我无法 curl IP。我在这里遵循:https://docs.traefik.io/user-guide/kubernetes/,似乎没有提到关闭
每当我尝试docker组成任何项目时,都会出现以下错误。 我尝试过有和没有sudo 我在这台机器上只有这个问题。我可以在Mac和Amazon WorkSpace上运行相同的容器。 (myslabs)
我正在尝试 pip install stanza 并收到此消息: ERROR: No matching distribution found for torch>=1.3.0 (from stanza
DNS 解析看起来不错,但我无法 ping 我的服务。可能是什么原因? 来自集群中的另一个 Pod: $ ping backend PING backend.default.svc.cluster.l
我正在使用Hibernate 4 + Spring MVC 4当我开始 Apache Tomcat Server 8我收到此错误: Error creating bean with name 'wel
我是一名优秀的程序员,十分优秀!