TextView怎么在Android中使用?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
站在用户的角度思考问题,与客户深入沟通,找到佳县网站设计与佳县网站推广的解决方案,凭借多年的经验,让设计与互联网技术结合,创造个性化、用户体验好的作品,建站类型包括:网站设计、成都网站制作、企业官网、英文网站、手机端网站、网站推广、域名申请、网络空间、企业邮箱。业务覆盖佳县地区。
XML布局文件:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout android:id="@+id/root" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <!--设置字号20sp,文本框结尾处绘制图片--> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="我爱Java" android:textSize="20pt" android:drawableRight="@drawable/ic_dashboard_black_24dp" /> <!--设置中间省略,所有字母大写--> <!--android:ellipsize="middle" ···省略号居中显示--> <!--android:textAllCaps="true"全体大写--> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:singleLine="true" android:text="我爱Java我爱Java我爱Java我爱Java我爱Java我爱Java我爱Java我爱Java" android:ellipsize="middle" android:textAllCaps="true"/> <!--对邮件电话、添加链接--> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:singleLine="true" android:text="邮箱是 814484626@qq.com, 电话是 13100000000" android:autoLink="email|phone"/> <!--设置颜色、大小、并使用阴影--> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="测试文字" android:textSize="25pt" android:shadowColor="#00f" android:shadowDx="10.0" android:shadowDy="8.0" android:shadowRadius="3.0" android:textColor="#f00"/> <!--测试密码框--> <TextView android:id="@+id/password" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="@string/app_name" android:textSize="25sp" android:password="true"/> <!--测试密码框--> <CheckedTextView android:id="@+id/check_text_view" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="可勾选的文本" android:textSize="25sp" android:checkMark="@xml/check"/> <!--通过Android:background指定背景--> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="带边框的文本" android:textSize="25sp" android:background="@drawable/bg_border"/> <!--通过Android:drawableLeft绘制一张图片--> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="圆角边框,渐变背景的文本" android:textSize="25sp" android:background="@drawable/bg_border2"/> </LinearLayout>
bg_bordor
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <!--设置背景色为透明色--> <solid android:color="#0000"/> <!--设置红色边框--> <stroke android:width="4px" android:color="#f00"/> </shape>
bg_bordor2
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <!--制定圆角矩形的四个圆角半径--> <corners android:topLeftRadius="30px" android:topRightRadius="5px" android:bottomRightRadius="30px" android:bottomLeftRadius="5px"/> <!--指定边框线条的宽度和颜色--> <stroke android:width="4px" android:color="#f0f"/> <!--指定使用渐变背景色,使用sweep类型渐变 颜色从 红色->绿色->蓝色--> <gradient android:startColor="#f00" android:centerColor="#0f0" android:endColor="#00f" android:type="sweep"/> </shape>
勾选效果通过xml selector实现切换
android:checkMark="@xml/check"/>
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@drawable/ok" android:state_selected="true"/> <item android:drawable="@drawable/no" android:state_selected="false"/> </selector>
Java代码添加点击事件
public class Home extends AppCompatActivity { private int i = 0 ; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main);//显示manLayout final CheckedTextView checkedTextView = (CheckedTextView) findViewById(R.id.check_text_view); checkedTextView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if( i++ % 2 == 1 ){ checkedTextView.setSelected(true); } else { checkedTextView.setSelected(false); } } }); } }
Android是一种基于Linux内核的自由及开放源代码的操作系统,主要使用于移动设备,如智能手机和平板电脑,由美国Google公司和开放手机联盟领导及开发。
看完上述内容,你们掌握TextView怎么在Android中使用的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注创新互联行业资讯频道,感谢各位的阅读!
当前名称:TextView怎么在Android中使用
网站路径:https://www.cdcxhl.com/article36/pdhhpg.html
成都网站建设公司_创新互联,为您提供网站维护、网站改版、小程序开发、网页设计公司、网站建设、手机网站建设
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联