在“首选项行”中添加一个按钮

时间:2013-01-07 11:26:20

标签: android android-preferences

我想在“设置”屏幕中显示一个按钮。已经问过这个确切的问题here。但遗憾的是没有答案。 :(

enter image description here

为了达到这个目的,我创建了一个像这样的自定义偏好 -

  public class CustomPreference extends Preference {

    private LinearLayout mWidgetContainer;
    private View mRowView;

    public CustomPreference(Context context) {
        super(context);
    }

    public CustomPreference(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public CustomPreference(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    protected View onCreateView(ViewGroup parent) {
        LayoutInflater viewInflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);

        mRowView = viewInflater.inflate(R.layout.preferences_row_view, parent, false);

        mWidgetContainer = (LinearLayout) mRowView.findViewById(android.R.id.widget_frame);

        Button button = new Button(getContext());
        LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

        button.setLayoutParams(params);
        button.setBackgroundResource(R.drawable.listview_row_bg);
        button.setTextSize(14);
        button.setPadding(5, 5, 5, 5);
        button.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                Intent intent = new Intent(getContext(), BuyScreenActivity.class);
                getContext().startActivity(intent);
            }
        });
        button.setTypeface(null, Typeface.BOLD);
        button.setText("Buy now");
        mWidgetContainer.addView(button);

        return mRowView;
    }
}

这确实有效。但它表现得很奇怪。正如您在单击该按钮时所看到的,我将用户带到名为BuyScreenActivity的Activity。奇怪的是,当我按下BuyScreenActivity时,我回到我的设置屏幕,但onDestroyonStop的{​​{1}}根本没有被调用。为什么它会那样?

如果我向下滚动设置屏幕,BuyScreenActivity&然后会调用onStop。为什么这必须这样做?

1 个答案:

答案 0 :(得分:0)

我不知道为什么会这样,但是如果它困扰您,只需覆盖BuyScreenActivity.java中的onBackPressed():

@Override
public void onBackPressed() {
    startActivity(new Intent(getContext(), SettingsACtivity.class));
}

请注意,我假设您只是通过“设置”进入BuyScreen。 如果不是,那么将上一个活动的名称放入意图数据中,然后将其切换到所需的活动就足够了。