我发现剪断了自己的应用程序: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);