gpt4 book ai didi

android - 如何使 TextView 在 fragment 中可滚动?

转载 作者:行者123 更新时间:2023-12-03 08:12:58 24 4
gpt4 key购买 nike

我在 Activity 中创建了 fragment 。每个 fragment 都有一个 TextView 。我想让 fragment 内的所有 TextView 都可以滚动。下面是我的 xml 和 java 代码。提前致谢

<FrameLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".chemistry.AtomicNumber">

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<TextView
android:id="@+id/atomicNumberDefinition"
android:text="The atomic number..... "
android:textAlignment="center"
android:textColor="#000000"
android:textSize="24sp"
android:scrollbars="vertical" />

Java 代码:

public class AtomicNumber extends Fragment {
private static final String ARG_PARAM1 = "param1";
private static final String ARG_PARAM2 = "param2";

private String mParam1;
private String mParam2;

public AtomicNumber() {
}

public static AtomicNumber newInstance(String param1, String param2) {
AtomicNumber fragment = new AtomicNumber();
Bundle args = new Bundle();
args.putString(ARG_PARAM1, param1);
args.putString(ARG_PARAM2, param2);
fragment.setArguments(args);
return fragment;
}

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (getArguments() != null) {
mParam1 = getArguments().getString(ARG_PARAM1);
mParam2 = getArguments().getString(ARG_PARAM2);
}
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_atomic_number, container, false);
}
}

请告诉我如何在java文件中编写正确的代码。

最佳答案

我建议使用ScrollView:

<ScrollView
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:orientation="vertical">

<TextView
android:id="@+id/atomicNumberDefinition"
android:text="The atomic number..... "
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000000"
android:textSize="24sp" />
</ScrollView>

关于android - 如何使 TextView 在 fragment 中可滚动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70332007/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com