【发布时间】:2020-12-07 14:39:46
【问题描述】:
我没有找到类似的问题,所以我问。 我有: FirstFragment、SecondFragment 和过渡:
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/nav_graph"
app:startDestination="@id/FirstFragment">
<fragment
android:id="@+id/FirstFragment"
android:name="testrenderinglistontransition.FirstFragment"
android:label="@string/first_fragment_label"
tools:layout="@layout/fragment_first">
<action
app:enterAnim="@anim/right_in"
android:id="@+id/action_FirstFragment_to_SecondFragment"
app:destination="@id/SecondFragment"/>
</fragment>
<fragment
android:id="@+id/SecondFragment"
android:name="testrenderinglistontransition.SecondFragment"
android:label="@string/second_fragment_label"
tools:layout="@layout/fragment_second">
<action
app:enterAnim="@anim/right_in"
android:id="@+id/action_SecondFragment_to_FirstFragment"
app:destination="@id/FirstFragment"/>
</fragment>
</navigation>
在 SecondFragment 上,我模拟在转换期间获取数据并显示数据:
类 SecondFragment : Fragment() {
override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?
): View? {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_second, container, false)
}
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
val recyclerview : RecyclerView = view.findViewById(R.id.recyclerview)
val progress : ProgressBar = view.findViewById(R.id.progress)
val adapter = CustomAdapter(arrayOf())
progress.visibility =View.VISIBLE
recyclerview.adapter = adapter
recyclerview.layoutManager = LinearLayoutManager(context).apply {
orientation = LinearLayoutManager.VERTICAL
}
val data = getData()
Handler().postDelayed(Runnable {
progress.visibility =View.GONE
adapter.dataSet = data
adapter.notifyDataSetChanged()
},250) // transition time is 300 so we should call notifyDataSetChanged before ending of transition
}
private fun getData() : Array<String>{
val list = mutableListOf<String>()
for(i in 0 .. 1000){
list.add(UUID.randomUUID().toString())
}
return list.toTypedArray()
}
}
我有什么:
您知道如何解决吗?我想我应该等待过渡结束。
您可以查看适配器和布局,但它们确实是最简单的:
class CustomAdapter(var dataSet: Array<String>) :
RecyclerView.Adapter<CustomAdapter.ViewHolder>() {
/**
* Provide a reference to the type of views that you are using
* (custom ViewHolder).
*/
class ViewHolder(view: View) : RecyclerView.ViewHolder(view) {
val textView: TextView
init {
// Define click listener for the ViewHolder's View.
textView = view.findViewById(R.id.textView)
}
}
// Create new views (invoked by the layout manager)
override fun onCreateViewHolder(viewGroup: ViewGroup, viewType: Int): ViewHolder {
// Create a new view, which defines the UI of the list item
val view = LayoutInflater.from(viewGroup.context)
.inflate(R.layout.text_row_item, viewGroup, false)
return ViewHolder(view)
}
// Replace the contents of a view (invoked by the layout manager)
override fun onBindViewHolder(viewHolder: ViewHolder, position: Int) {
// Get element from your dataset at this position and replace the
// contents of the view with that element
viewHolder.textView.text = dataSet[position]
}
// Return the size of your dataset (invoked by the layout manager)
override fun getItemCount() = dataSet.size
}
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:gravity="center_vertical">
<ImageView
android:id="@+id/image"
android:src="@android:drawable/alert_dark_frame"
android:layout_width="30dp"
android:layout_height="30dp"/>
<TextView
android:layout_alignLeft="@+id/image"
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
【问题讨论】:
标签: android android-fragments android-recyclerview android-animation android-transitions