私は自分のアプリの割合を行うために切り取られたものを発見しました: http://www.androidsnippets.com/prompt-engaged-users-to-rate-your-app-in-the-android-market-appirater
このコードをパーソナライズすると、切り取りによって作成されたテキストビュー内にスクロールビュー (xml ではなく Java コードを使用) を挿入できません。
LinearLayout ll = new LinearLayout(mContext);
ll.setOrientation(LinearLayout.VERTICAL);
TextView tv = new TextView(mContext);
tv.setText("If you enjoy using " + APP_TITLE + ", please take a moment to rate it. Thanks for your support!");
tv.setWidth(240);
tv.setPadding(4, 0, 4, 10);
ll.addView(tv);