-1

例: UI を含むプロジェクトにボタンが含まれています.. アクティビティ:

package android.tuanshaker.myproject.com;
import android.app.Activity;
import android.os.Bundle;

public class MyProjectActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
}
}

そしてファイル main.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

<Button
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello" />

</LinearLayout>

プロジェクトのコードと xml を textview で表示したいのですが、どうすれば取得できますか?

4

1 に答える 1

1

xml、js コード ファイルを にコピーしますres/rawContext.getResources().openRawResource()を使用してそれらを読み取ります。

さらに、jHighlightを使用して、これらのソース コードを (Web ビューで) フォーマットすることができます。

于 2012-05-26T15:02:37.180 に答える