我正在尝试在android片段中填充textview。 我没有运气,因为片段是空白的。
我知道我从根本上错过了一些东西。我已阅读有关片段的文档,我仍感到困惑。
下面是我的一个片段的代码(其他片段看起来一样):
import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
public class ResourcesFragment extends Fragment {
public ResourcesFragment(){
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_resources, container, false);
InputStream is = getResources().openRawResource(R.raw.resources);
BufferedReader br = new BufferedReader(new InputStreamReader(is));
String line;
String entireFile = "";
try {
while((line = br.readLine()) != null) { // <--------- place readLine() inside loop
entireFile += (line + "\n"); // <---------- add each line to entireFile
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
TextView text = null;
//text.setText(entireFile); // <------- assign entireFile to TextView
//assert text != null;
if (text != null) {
text.setText(entireFile);
}
//return rootView;
return rootView;
}
}
这是我的XML:
<?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="match_parent">
<TextView
android:id="@+id/txtsource"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="16dp"
android:layout_centerInParent="true"
android:gravity="fill_horizontal|top|left" />
</RelativeLayout>
应用程序编译没有错误**,但视图为空。 有人能告诉我这样做的正确方法并帮助我理解不仅在哪里出错,而且在程序上,如何做到这一点?
感谢。
答案 0 :(得分:2)
这是您的代码中的错误。因为你忘记了对-O2
的引用
所以添加
TextView
然后TextView text = (TextView) rootView.findViewById(R.id.txtSource);
希望为你工作:)
答案 1 :(得分:1)
你忘了找到textview:
TextView text = (TextView) rootView.findViewById(R.id.txtSource);