- 把要做的事情简化为最基本的一个要求,交给GPT解决,然后在基础版本上逐步实现更复杂的需求。
任务:首页的Fragment使用适配器,每一行显示一个攻略(含图片、文字等),起初是模仿Activity调用适配器的代码,但发现这种方法不适用于Fragment(不显示列表内容),就一直把最终的复杂代码交给GPT,但一直无法解决问题。
最终,删除所有代码,把homeFragment的布局代码和列表每一行的样式需求告诉GPT,得到了有效回答。(xml代码都是最简单的样式)
提问:
安卓开发中,homeFragment.java的布局fragment_home.xml如下:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<ListView
android:id="@+id/lve_listview"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</ScrollView>
现在想要id为lve_listview的列表,每一行的样式均为gonglve_list_item.xml,gonglve_list_item.xml代码如下:<?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"
android:background="@color/green">
<TextView
android:layout_width="100dp"
android:layout_height="30dp"
android:text="BeiJing"
android:textSize="19dp"
android:translationX="70dp" />
</LinearLayout>
homeFragment.java 代码如何编写
标签:感悟,xml,layout,parent,安卓,GPT,android,代码,match From: https://blog.csdn.net/yi_wen_1226/article/details/137240044