我是片段新手,我正在使用带选项卡的滑动视图开发应用程序。我的目标是获取存储在字符串数组中的textview显示文本,并在应用程序重新启动时进行更改。 但是当我使用findViewById时似乎有问题。
代码:
First.java
import java.util.Random;
import android.support.v4.app.Fragment;
import android.app.Dialog;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
public class first extends Fragment{
String[] strArr;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// TODO Auto-generated method stub
View rootView = inflater.inflate(R.layout.first_xml, container, false);
strArr = getResources().getStringArray(R.array.quote);
//quote is the name given to the string array
return rootView;
}
@Override
public void onResume() {
// TODO Auto-generated method stub
super.onResume();
refreshTV();
}
void refreshTV(){
TextView tv = (TextView)findViewById(R.id.text1);
Random ran = new Random();
int c = ran.nextInt(strArr.length);
tv.setText(strArr[c]);
}
}
2.first_xml.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#fa6a6a" >
<TextView android:layout_width="fill_parent"
android:id="@+id/text1"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@array/quote"
android:textSize="40dp"
android:layout_centerInParent="true"/>
</RelativeLayout>
任何帮助将不胜感激。 如果我提到的任何内容不够明确,请告诉我。 谢谢!
答案 0 :(得分:5)
Fragment
课程没有findViewById(...)
方法,因此您必须从rootView
或Activity
获取您的观看次数。我建议您让TextView
成为Fragment
的成员,并从rootView
中检索,然后根据需要进行引用。
public class first extends Fragment {
String[] strArr;
TextView tv;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// TODO Auto-generated method stub
View rootView = inflater.inflate(R.layout.first_xml, container, false);
tv = rootView.findViewById(R.id.text1);
strArr = getResources().getStringArray(R.array.quote);
//quote is the name given to the string array
return rootView;
}
@Override
public void onResume() {
// TODO Auto-generated method stub
super.onResume();
refreshTV();
}
void refreshTV(){
Random ran = new Random();
int c = ran.nextInt(strArr.length);
tv.setText(strArr[c]);
}
}
(编辑删除对findViewById的冗余调用。)
答案 1 :(得分:4)
保留onCreateView()中inflater.inflate()返回的根视图。
稍后可以使用它来调用findViewById()以根据需要查找任何视图。
View mView;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
mView = inflater.inflate(R.layout.xyz, container, false);
return mView;
}
然后在课堂的任何地方
mView.findViewById(R.id.some_view);
或者,如果您可以使用
getActivity().findViewById(R.id.xyz);
答案 2 :(得分:0)
我建议您在片段中创建TextView
属性,并使用onCreateView
方法分配该属性并使用此句myTextView = (TextView) rootView.findViewById(R.id.text1);
,然后在refreshTV
中使用它方法
希望有所帮助