This commit is contained in:
DelLevin-Home
2026-02-09 22:05:05 +08:00
parent 7dc79172fa
commit ba4aec0e08
17 changed files with 705 additions and 30 deletions

View File

@@ -12,7 +12,6 @@ import androidx.fragment.app.Fragment;
public class FragmentProfile extends Fragment {
// ⚠️ 必须有无参构造函数!
public FragmentProfile() {
// Required empty public constructor
}
@@ -33,7 +32,7 @@ public class FragmentProfile extends Fragment {
TextView movieCount = view.findViewById(R.id.tv_movie_count);
TextView bookCount = view.findViewById(R.id.tv_book_count);
if (movieCount != null) movieCount.setText("24");
if (movieCount != null) movieCount.setText("14");
if (bookCount != null) bookCount.setText("18");
}
}