我有一个 helpdoc.txt 文件存储在 Eclipse 中的 res/raw 中。它使用以下代码显示在我的应用程序中:
public class HelpPage extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.help);
//read in
InputStream iFile = getResources().openRawResource(R.raw.helpdoc);
try {
TextView helpText = (TextView) findViewById(R.id.TextView_HelpText);
String strFile = inputStreamToString(iFile);
helpText.setText(strFile);
} catch (Exception e) {
//nothing here
}
}//end onCreate
/**
* Converts an input stream to a string
*/
public String inputStreamToString(InputStream is) throws IOException {
StringBuffer sBuffer = new StringBuffer();
DataInputStream dataIO = new DataInputStream(is);
String strLine = null;
while ((strLine = dataIO.readLine()) != null) {
sBuffer.append(strLine + "\n");
}//end while
dataIO.close();
is.close();
return sBuffer.toString();
}//end method
它正确加载,但并不完全适合屏幕,当我尝试滚动时,我无法阅读其余文本。
这是完整的相关 XML 布局文件:http: //pastebin.com/PtskJbqt
谁能建议我如何向下滚动以确保用户可以阅读整个文件?
谢谢。