私は学生のための "C"アプリケーションを作成しています、今私はアンドロイドアプリに表示するためにテキストファイルを追加することができますまたはコードを記述する他の方法は、私はあなたが保存することをお勧めします。この問題を私を助けてください...どのように私はアンドロイドのテキストビューでCプログラムを追加することができます
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<ScrollView
android:id="@+id/ScrollView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:minWidth="310dp"
android:scrollbarStyle="outsideOverlay"
android:scrollbars="vertical">
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="
#include<stdio.h>
#include<math.h>
void main()
{
printf("hello world");
}
"/>
</ScrollView>
</LinearLayout>
のstrings.xmlに文字列を追加して、アンドロイドのための二重引用符が欠落している、このコードagain.In試すよう
webview
でそれを表示することができます。 –とTextViewの最後の括弧を閉じるのを忘れた –
は解決されましたか? –