最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android實(shí)現(xiàn)文字下方加橫線

 更新時(shí)間:2020年07月24日 08:37:02   作者:青城學(xué)者  
這篇文章主要為大家詳細(xì)介紹了Android實(shí)現(xiàn)文字下方加橫線,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了Android實(shí)現(xiàn)文字下方加橫線的具體代碼,供大家參考,具體內(nèi)容如下

public class WhiteTextviewWithWhiteBottomLine extends LinearLayout {
 
 private Context mContext;
 
 public WhiteTextviewWithWhiteBottomLine(Context context) {
  this(context, null);
 }
 
 public WhiteTextviewWithWhiteBottomLine(Context context, @Nullable AttributeSet attrs) {
  this(context, attrs, 0);
 }
 
 public WhiteTextviewWithWhiteBottomLine(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
  super(context, attrs, defStyleAttr);
  mContext = context;
  initViews();
 }
 
 private TextView textView;
 private View viewLine;
 
 private void initViews() {
  View view = View.inflate(mContext, R.layout.view_textview_with_bottom_line, null);
 
  textView = view.findViewById(R.id.tv_view_textview_with_line);
  viewLine = view.findViewById(R.id.view_view_textview_with_line);
 
  this.addView(view);
 
  setSelected(false);
 }
 
 public void setTextViewText(String s) {
  textView.setText(s);
 }
 
 public void setLineColor(@ColorInt int color) {
  viewLine.setBackgroundColor(color);
 }
 
 public void setSelected(boolean isSelected) {
 
  if (isSelected) {
   viewLine.setVisibility(VISIBLE);
  } else {
   viewLine.setVisibility(GONE);
  }
 }
 
 public boolean isSelected() {
  if (viewLine.getVisibility() == View.VISIBLE) {
   return true;
  }else {
   return false;
  }
 }
}

布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical">
 
 <LinearLayout
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:gravity="center"
  android:orientation="vertical">
 
  <TextView
   android:id="@+id/tv_view_textview_with_line"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:gravity="center"
   android:padding="10dp"
   android:text="測(cè)試"
   android:textColor="@color/white"
   android:textSize="12sp" />
 
  <View
   android:id="@+id/view_view_textview_with_line"
   android:layout_width="30dp"
   android:layout_height="1dp"
   android:layout_gravity="center_horizontal"
   android:background="@color/white" />
 
 </LinearLayout>
 
</LinearLayout>

如果想改變文字、線的顏色這些,直接修改布局文件中的內(nèi)容。

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論

淄博市| 兴海县| 芜湖县| 尉犁县| 大方县| 临高县| 夏邑县| 枣庄市| 桐柏县| 宁国市| 友谊县| 永登县| 山东省| 彭泽县| 扬州市| 卓尼县| 桐庐县| 彭阳县| 竹溪县| 宁津县| 祁连县| 新密市| 专栏| 静乐县| 吉木乃县| 莱芜市| 通州市| 中宁县| 炎陵县| 古蔺县| 新宁县| 蕲春县| 连南| 炎陵县| 阿鲁科尔沁旗| 德保县| 彭泽县| 澳门| 鄄城县| 广平县| 玛纳斯县|