当前位置:   article > 正文

Android设置TextView显示一行或多行_安卓页面一行怎么设置

安卓页面一行怎么设置

在listView的item中或者是特殊的业务需求中,会要求TextView的内容不完全显示,只有通过一个指定的操作后才显示所有的,比如说一个按钮或者是其它的什么控件。

要想实现这个效果并不难,只要控制好TextView的行数就行。文章中介绍了两种实现方法,一种是给button添加Flag,另一种是给button添加Tag,两种方法都可以,具体说不上哪种更好,哪种适合用哪种。

第一种方法的布局,注意TextView中必须加上android:ellipsize和android:maxLines这两条属性,不然的话效果出不来:

  1. <span style="font-size:14px;"><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:paddingBottom="@dimen/activity_vertical_margin"
  6. android:paddingLeft="@dimen/activity_horizontal_margin"
  7. android:paddingRight="@dimen/activity_horizontal_margin"
  8. android:paddingTop="@dimen/activity_vertical_margin"
  9. tools:context=".MainActivity" >
  10. <TextView
  11. android:id="@+id/text1"
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:text="@string/hello_world" />
  15. <RelativeLayout
  16. android:layout_width="match_parent"
  17. android:layout_height="wrap_content"
  18. android:layout_below="@id/text1"
  19. android:layout_marginTop="10dp" >
  20. <TextView
  21. android:id="@+id/text2"
  22. android:layout_width="200dp"
  23. android:layout_height="wrap_content"
  24. android:ellipsize="end"
  25. android:maxLines="2"
  26. android:text="四谛法邝健廉四谛法邝健廉四谛法邝健廉四谛法邝健廉四谛法邝健廉四谛法邝健廉四谛法邝健廉四谛法邝健廉四谛法邝健廉四谛法邝健廉四谛法邝健廉四谛法邝健廉" />
  27. <Button
  28. android:id="@+id/button"
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. android:layout_alignParentRight="true"
  32. android:layout_marginTop="10dp"
  33. android:text="下拉" />
  34. </RelativeLayout>
  35. </RelativeLayout></span>
接下来就可以在类中控制这个TextView显示或者隐藏了。

  1. <span style="font-size:14px;"> button.setOnClickListener(new OnClickListener() {
  2. Boolean flag = true;
  3. @Override
  4. public void onClick(View arg0) {
  5. // TODO Auto-generated method stub
  6. if (flag) {
  7. flag = false;
  8. text.setEllipsize(null);// 展开
  9. text.setSingleLine(flag);
  10. button.setText("隐藏");
  11. } else {
  12. flag = true;
  13. text.setMaxLines(2);// 收缩
  14. button.setText("显示");
  15. // text.setEllipsize(TruncateAt.END);
  16. }
  17. }
  18. });</span>

或者可以在Button中添加一个Tag

  1. <span style="font-size:14px;"><Button
  2. android:id="@+id/item_button"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:layout_alignParentRight="true"
  6. android:layout_centerVertical="true"
  7. android:layout_marginRight="10dp"
  8. android:background="@drawable/packup"
  9. android:tag="true" /></span>


同样,在代码中获取到改按钮的tag进行控制

  1. <span style="font-size:14px;"> viewItme.item_btn.setOnClickListener(new OnClickListener() {
  2. @Override
  3. public void onClick(View v) {
  4. // TODO Auto-generated method stub
  5. Boolean flag = Boolean.valueOf((String) viewItme.item_btn.getTag()) ;
  6. if (flag) {
  7. // 展开
  8. viewItme.item_btn.setTag("false");
  9. viewItme.inspecttext_tv.setEllipsize(null);
  10. viewItme.inspecttype_tv.setEllipsize(null);
  11. viewItme.item_describe.setEllipsize(null);
  12. viewItme.item_describe.setMaxLines(10);
  13. viewItme.item_btn.setBackgroundResource(R.drawable.unfloddd);
  14. } else {
  15. // 收缩
  16. viewItme.item_btn.setTag("true");
  17. viewItme.item_describe.setMaxLines(1);
  18. viewItme.item_btn.setBackgroundResource(R.drawable.packup);
  19. }
  20. }
  21. });</span>



声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/242703
推荐阅读
相关标签
  

闽ICP备14008679号