• Android开发基础——Fragment实践


    这里编写一个兼容手机和平板的实践程序。

    首先在app/builtd.gradle中添加依赖:

    1. dependencies {
    2. implementation 'androidx.core:core-ktx:1.3.2'
    3. implementation 'androidx.appcompat:appcompat:1.2.0'
    4. implementation 'com.google.android.material:material:1.3.0'
    5. implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
    6. implementation 'androidx.recyclerview:recyclerview:1.2.0'
    7. testImplementation 'junit:junit:4.+'
    8. androidTestImplementation 'androidx.test.ext:junit:1.1.2'
    9. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
    10. }

    新建一个News类:

    class News(val title: String, val content: String)

    新建布局文件news_content_frag.xml:

    1. "1.0" encoding="utf-8"?>
    2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    3. android:layout_width="match_parent"
    4. android:layout_height="match_parent">
    5. <LinearLayout
    6. android:id="@+id/contentLayout"
    7. android:layout_width="match_parent"
    8. android:layout_height="match_parent"
    9. android:orientation="vertical"
    10. android:visibility="invisible">
    11. <TextView
    12. android:id="@+id/newsTitle"
    13. android:layout_width="match_parent"
    14. android:layout_height="wrap_content"
    15. android:gravity="center"
    16. android:padding="10dp"
    17. android:textSize="20sp"/>
    18. <View
    19. android:layout_width="match_parent"
    20. android:layout_height="1dp"
    21. android:background="#000"/>
    22. <TextView
    23. android:id="@+id/newsContent"
    24. android:layout_width="match_parent"
    25. android:layout_height="0dp"
    26. android:layout_weight="1"
    27. android:padding="15dp"
    28. android:textSize="18sp"/>
    29. LinearLayout>
    30. <View
    31. android:layout_width="1dp"
    32. android:layout_height="match_parent"
    33. android:layout_alignParentLeft="true"
    34. android:background="#000"/>
    35. RelativeLayout>

    上面的布局主要分为两个部分,头部部分显示新闻标题,正文部分显示新闻内容,中间使用一条水平方向的细线分割。然后还使用垂直方向的细线在双页模式时将左右两侧的新闻内容分割开。细线是通过View,并设置宽高和背景色实现。

    并且在上面的内容中,新闻内容的布局是不可见的,因为在双页模式下,如果没有选中新闻列表中的任何一条新闻,就不应该显示新闻内容布局。

    然后新建NewsContentFragment类:

    1. class NewsContentFragment:Fragment() {
    2. override fun onCreateView(
    3. inflater: LayoutInflater,
    4. container: ViewGroup?,
    5. savedInstanceState: Bundle?
    6. ): View? {
    7. return inflater.inflate(R.layout.news_content_frag, container, false)
    8. }
    9. fun refresh(title: String, content: String) {
    10. contentLayout.visibility = View.VISIBLE
    11. newsTitle.text = title
    12. newsContent.text = content
    13. }
    14. }

    上面在onCreateView方法中加载了刚刚创建的布局,然后提供了refresh方法,用于显示标题和内容,不过显示之前首先应该将其布局设置为可见。

    上面是双页模式下的布局,而如果要在单页模式下使用,就需要再创建一个NewsContentActivity,布局名称为activity_news_content,然后修改布局代码:

    1. "1.0" encoding="utf-8"?>
    2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    3. android:orientation="vertical"
    4. android:layout_width="match_parent"
    5. android:layout_height="match_parent">
    6. <fragment
    7. android:id="@+id/newsContentFrag"
    8. android:name="com.example.fragmentbestpractice.NewsContentFragment"
    9. android:layout_width="match_parent"
    10. android:layout_height="match_parent"/>
    11. LinearLayout>

    同时修改NewsContentActivity中的代码:

    1. class NewsContentActivity : AppCompatActivity() {
    2. companion object {
    3. fun actionStart(context: Context, title: String, content:String) {
    4. val intent = Intent(context, NewsContentActivity::class.java).apply {
    5. putExtra("news_title", title)
    6. putExtra("news_content", content)
    7. }
    8. context.startActivity(intent)
    9. }
    10. }
    11. override fun onCreate(savedInstanceState: Bundle?) {
    12. super.onCreate(savedInstanceState)
    13. setContentView(R.layout.activity_news_content)
    14. val title = intent.getStringExtra("news_title")
    15. val content = intent.getStringExtra("news_content")
    16. if (title != null && content != null) {
    17. val fragment = newsContentFrag as NewsContentFragment
    18. fragment.refresh(title, content)
    19. }
    20. }
    21. }

    在上面的代码中,onCreate方法通过Intent获取到了传入的标题和内容,然后调用refresh方法,将该标题和内容传入,以显示其内容。

    然后创建news_title_frag.xml布局以显示右侧的列表:

    1. "1.0" encoding="utf-8"?>
    2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    3. android:orientation="vertical"
    4. android:layout_width="match_parent"
    5. android:layout_height="match_parent">
    6. <androidx.recyclerview.widget.RecyclerView
    7. android:id="@+id/newsTitleRecyclerView"
    8. android:layout_width="match_parent"
    9. android:layout_height="match_parent"/>
    10. LinearLayout>

    既然是RecyclerView,就需要新建news_item布局作为RecyclerView子项的布局:

    1. "1.0" encoding="utf-8"?>
    2. <TextView xmlns:android="http://schemas.android.com/apk/res/android"
    3. android:id="@+id/newsTitle"
    4. android:layout_width="match_parent"
    5. android:layout_height="wrap_content"
    6. android:maxLines="1"
    7. android:ellipsize="end"
    8. android:textSize="18sp"
    9. android:paddingLeft="10dp"
    10. android:paddingRight="10dp"
    11. android:paddingTop="15dp"
    12. android:paddingBottom="15dp"/>

    上面的布局中只有一个TextView,其中android:ellipsize用于设定当文本内容超出控件宽度时文本的缩略方式,这里指定为end表示在尾部进行缩略。

    然后新建NewsTitleFragment作为展示该列表的Fragment:

    1. class NewsTitleFragment:Fragment() {
    2. private var isTwoPane = false
    3. override fun onCreateView(
    4. inflater: LayoutInflater,
    5. container: ViewGroup?,
    6. savedInstanceState: Bundle?
    7. ): View? {
    8. return inflater.inflate(R.layout.news_title_frag, container, false)
    9. }
    10. override fun onActivityCreated(savedInstanceState: Bundle?) {
    11. super.onActivityCreated(savedInstanceState)
    12. isTwoPane = activity?.findViewById(R.id.newsContentLayout) != null
    13. }
    14. }

    但很显然,之前的代码中并没有newsContentLayout这个id,并且该id和双页模式的判定有关,因此需要使该id的View只有在双页模式中才会出现。

    这里需要借助之前提到的限定符。首先修改activity_main.xml中的代码:

    1. "1.0" encoding="utf-8"?>
    2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    3. android:id="@+id/newsTitleLayout"
    4. android:layout_width="match_parent"
    5. android:layout_height="match_parent">
    6. <fragment
    7. android:id="@+id/newsTitleFrag"
    8. android:name="com.example.fragmentbestpractice.NewsTitleFragment"
    9. android:layout_width="match_parent"
    10. android:layout_height="match_parent"/>
    11. FrameLayout>

    上面的代码会在单页模式下只加载新闻标题的Fragment。

    然后新建layout-sw600dp文件夹,在该文件夹下新建activity_main.xml:

    1. "1.0" encoding="utf-8"?>
    2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    3. android:orientation="horizontal"
    4. android:layout_width="match_parent"
    5. android:layout_height="match_parent">
    6. <fragment
    7. android:id="@+id/newsTitleFrag"
    8. android:name="com.example.fragmentbestpractice.NewsTitleFragment"
    9. android:layout_width="0dp"
    10. android:layout_height="match_parent"
    11. android:layout_weight="1" />
    12. <FrameLayout
    13. android:id="@+id/newsContentLayout"
    14. android:layout_width="0dp"
    15. android:layout_height="match_parent"
    16. android:layout_weight="3" >
    17. <fragment
    18. android:id="@+id/newsContentFrag"
    19. android:name="com.example.fragmentbestpractice.NewsContentFragment"
    20. android:layout_width="match_parent"
    21. android:layout_height="match_parent"/>
    22. FrameLayout>
    23. LinearLayout>

    可以看出,在双页模式下存在两个Fragment,并将新闻内容放在一个FrageLayout布局下,而该布局id正是newsContentLayout,因此能找到该id就是双页模式。

    之后就是在NewsTitleFragment中通过RecyclerView展示列表,同样修改NewsTitleFragment代码:

    1. class NewsTitleFragment:Fragment() {
    2. private var isTwoPane = false
    3. inner class NewsAdapter(val newsList: List):RecyclerView.Adapter() {
    4. inner class ViewHolder(view: View):RecyclerView.ViewHolder(view) {
    5. val newsTitle:TextView = view.findViewById(R.id.newsTitle)
    6. }
    7. override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): NewsAdapter.ViewHolder {
    8. val view = LayoutInflater.from(parent.context).inflate(R.layout.news_item, parent, false)
    9. val holder = ViewHolder(view)
    10. holder.itemView.setOnClickListener {
    11. val news = newsList[holder.absoluteAdapterPosition]
    12. if(isTwoPane) {
    13. val fragment = newsContentFrag as NewsContentFragment
    14. fragment.refresh(news.title, news.content)
    15. } else {
    16. NewsContentActivity.actionStart(parent.context, news.title, news.content)
    17. }
    18. }
    19. return holder
    20. }
    21. override fun onBindViewHolder(holder: ViewHolder, position: Int) {
    22. val news = newsList[position]
    23. holder.newsTitle.text = news.title
    24. }
    25. override fun getItemCount() = newsList.size
    26. }
    27. override fun onCreateView(
    28. inflater: LayoutInflater,
    29. container: ViewGroup?,
    30. savedInstanceState: Bundle?
    31. ): View? {
    32. return inflater.inflate(R.layout.news_title_frag, container, false)
    33. }
    34. override fun onActivityCreated(savedInstanceState: Bundle?) {
    35. super.onActivityCreated(savedInstanceState)
    36. isTwoPane = activity?.findViewById(R.id.newsContentLayout) != null
    37. }
    38. }

    上面只是为RecyclerView创建了适配器,不过这里是将适配器写为了内部类的形式,以便可以直接访问NewsTitleFragment中的变量。

    而在onCreateViewHolder的点击事件注册中,首先获取News实例,然后判断双页还是单页模式,如果是单页模式,就启动新的Activity显示新闻内容,而如果是双页模式,则更新NewsContentFragment中的数据。

    最后向RecyclerView中填充数据,修改NewsTitleFragment:

    1. class NewsTitleFragment:Fragment() {
    2. private var isTwoPane = false
    3. inner class NewsAdapter(val newsList: List):RecyclerView.Adapter() {
    4. inner class ViewHolder(view: View):RecyclerView.ViewHolder(view) {
    5. val newsTitle:TextView = view.findViewById(R.id.newsTitle)
    6. }
    7. override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): NewsAdapter.ViewHolder {
    8. val view = LayoutInflater.from(parent.context).inflate(R.layout.news_item, parent, false)
    9. val holder = ViewHolder(view)
    10. holder.itemView.setOnClickListener {
    11. val news = newsList[holder.absoluteAdapterPosition]
    12. if(isTwoPane) {
    13. val fragment = newsContentFrag as NewsContentFragment
    14. fragment.refresh(news.title, news.content)
    15. } else {
    16. NewsContentActivity.actionStart(parent.context, news.title, news.content)
    17. }
    18. }
    19. return holder
    20. }
    21. override fun onBindViewHolder(holder: ViewHolder, position: Int) {
    22. val news = newsList[position]
    23. holder.newsTitle.text = news.title
    24. }
    25. override fun getItemCount() = newsList.size
    26. }
    27. override fun onCreateView(
    28. inflater: LayoutInflater,
    29. container: ViewGroup?,
    30. savedInstanceState: Bundle?
    31. ): View? {
    32. return inflater.inflate(R.layout.news_title_frag, container, false)
    33. }
    34. override fun onActivityCreated(savedInstanceState: Bundle?) {
    35. super.onActivityCreated(savedInstanceState)
    36. isTwoPane = activity?.findViewById(R.id.newsContentLayout) != null
    37. val layoutManager = LinearLayoutManager(activity)
    38. newsTitleRecyclerView.layoutManager = layoutManager
    39. val adapter = NewsAdapter(getNews())
    40. newsTitleRecyclerView.adapter = adapter
    41. }
    42. private fun getNews():List {
    43. val newsList = ArrayList()
    44. for (i in 1..50) {
    45. val news = News("This is news title $i", getRandomLengthString("This is news content $i."))
    46. newsList.add(news)
    47. }
    48. return newsList
    49. }
    50. private fun getRandomLengthString(str: String):String {
    51. val n = (1..20).random()
    52. val builder = StringBuilder()
    53. repeat(n) {
    54. builder.append(str)
    55. }
    56. return builder.toString()
    57. }
    58. }

    上述代码只是生成了新闻内容。

    运行程序结果为:

     

     

     这样也就实现了手机和平板的效果适配。

  • 相关阅读:
    Spring Bean的加载方式
    vulnhub靶场之THE PLANETS: EARTH
    30fps跳帧为20fps
    系统架构设计师【第10章】: 软件架构的演化和维护 (核心总结)
    程序员面对生活
    Transformer的一点理解,附一个简单例子理解attention中的QKV
    基于遗传算法的微电网经济运行优化matlab程序
    摩尔定律的概念
    【MMCV】MMCV安装与踩坑
    导航守卫的使用记录和beforeEach( )死循环的问题
  • 原文地址:https://blog.csdn.net/SAKURASANN/article/details/127034522