具有autoSizeTextType统一的TextView。需要相对于其他一些观点

时间:2018-11-22 08:31:54

标签: android android-textview-autosize

Degree

我试图将度数符号textview设置在另一个温度textview的顶部。 我是通过使用相对布局实现的。 在这里,我想将温度textview设置为自动调整大小。 但是根据文档,自动调整大小的textview不能为wrap_content。 有什么办法可以做到这一点?

list=['e','r','n','t','e','p','s']
clear=[]
for x in list:    
    if list.index(x)%7==0:
        a=list[list.index(x)+6]
    elif list.index(x)%7==1:
        a=list[list.index(x)-1]
    elif list.index(x)%7==2:
        a=list[list.index(x)-1]
    elif list.index(x)%7==3:
        a=list[list.index(x)+2]
    elif list.index(x)%7==4:
        a=x
    elif list.index(x)%7==5:
        a=list[list.index(x)-3]
    else:               
        a=list[list.index(x)-6]
    clear.append(a)
clear=''.join(clear)
print(clear)

1 个答案:

答案 0 :(得分:0)

我已经使用了这个库,并且在我的场景中可以使用 intuit library for scaleable dp

很抱歉在这里添加此消息,我是这里的新用户,没有足够的repo来评论,否则我会在评论部分中编写它。谢谢