0

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

1 回答 1

1

您可以将 TextView 包装在另一个布局中(就像您所做的那样),然后将所有内容包装在 ScrollView 中。为此:

ScrollView sc = new ScrollView(mContext);
sc.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
sc.setFillViewport(true);

sc.addView(ll);
于 2012-12-11T18:17:19.713 回答