摘要:
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout android:layout_width="match_parent" android:layout_height="134dp" android:layout_alignParentTop 阅读全文
摘要:
public class MyTextView extends TextView { //在用代码创建的时候调用 public MyTextView(Context context) { this(context, null); } //在识别XML的时候会调用此方法创建Textview,底层会用反 阅读全文
摘要:
<yf.changsha.com.view.MyTextView android:layout_width="match_parent" android:layout_height="40dp" android:ellipsize="marquee" android:focusable="true" 阅读全文
摘要:
package com.gsls.b_mvp.base; import android.os.Bundle; import androidx.appcompat.app.AppCompatActivity; import com.gsls.b_mvp.view.util.GT; /** * auth 阅读全文
摘要:
//定义适配器类public class MyAdapter extends RecyclerView.Adapter<MyAdapter.MyViewHolder>{ private Context context; private List<People> DataList; //编写导入数据的 阅读全文