代码不使用shareactionprovider但相同的代码使用menu选项

时间:2013-12-02 18:19:42

标签: android shareactionprovider

我正在使用shareactionprovider来共享文本但无法使其工作。相同的代码与菜单选项一起正常工作。当我使用shareactionprovider共享文本时,不共享文本,但是当我使用菜单共享选项共享相同文本时,文本会被共享。

抱歉我的英语很差

public boolean onCreateOptionsMenu(Menu menu) {
        super.onCreateOptionsMenu(menu);
        getActionBar().setDisplayHomeAsUpEnabled(true);
        MenuInflater inflater = getMenuInflater();
        inflater.inflate(R.menu.share2, menu);
        menu.add(Menu.NONE, MENU_ITEM1, Menu.NONE, "Share");
        MenuItem mShareActionProviderItem = (MenuItem) menu.findItem(R.id.menu_share2);

        mShareActionProvider = (ShareActionProvider) mShareActionProviderItem.getActionProvider();

        Intent t = new Intent(Intent.ACTION_SEND);
        t.setAction(Intent.ACTION_SEND);
        t.setType("text/plain");
        CharSequence displayContents = contentsTextView.getText().toString();
        t.putExtra(Intent.EXTRA_TEXT,displayContents);
        mShareActionProvider.setShareIntent(t);
        return true;  
    }


    @Override
     public boolean onOptionsItemSelected(MenuItem item) {
         switch (item.getItemId()) {



        case MENU_ITEM1:

                Intent shareIntent2 = new Intent();
                shareIntent2.setAction(Intent.ACTION_SEND);
                shareIntent2.setType("text/plain");
                CharSequence displayContents2 = contentsTextView.getText().toString();
                shareIntent2.putExtra(Intent.EXTRA_TEXT,displayContents2);
                startActivity(shareIntent2);
                break;




            }
            return super.onOptionsItemSelected(item);
     }

1 个答案:

答案 0 :(得分:1)

contentsTextView在调用onCreateOptionsMenu()时可能为空。

相反,请在用户输入时更新Intent

/***
  Copyright (c) 2012 CommonsWare, LLC
  Licensed under the Apache License, Version 2.0 (the "License"); you may not
  use this file except in compliance with the License. You may obtain        a copy
  of the License at http://www.apache.org/licenses/LICENSE-2.0. Unless required
  by applicable law or agreed to in writing, software distributed under the
  License is distributed on an "AS IS" BASIS,        WITHOUT        WARRANTIES OR CONDITIONS
  OF ANY KIND, either express or implied. See the License for the specific
  language governing permissions and limitations under the License.

  From _The Busy Coder's Guide to Android Development_
    http://commonsware.com/Android
*/

package com.commonsware.android.sap;

import android.content.Intent;
import android.os.Bundle;
import android.text.Editable;
import android.text.TextWatcher;
import android.widget.EditText;
import android.widget.Toast;
import com.actionbarsherlock.app.SherlockActivity;
import com.actionbarsherlock.view.Menu;
import com.actionbarsherlock.widget.ShareActionProvider;

public class MainActivity extends SherlockActivity implements
    ShareActionProvider.OnShareTargetSelectedListener, TextWatcher {
  private ShareActionProvider share=null;
  private Intent shareIntent=new Intent(Intent.ACTION_SEND);
  private EditText editor=null;

  @Override
  public void onCreate(Bundle icicle) {
    super.onCreate(icicle);
    setContentView(R.layout.activity_main);

    shareIntent.setType("text/plain");
    editor=(EditText)findViewById(R.id.editor);
    editor.addTextChangedListener(this);
  }

  @Override
  public boolean onCreateOptionsMenu(Menu menu) {
    getSupportMenuInflater().inflate(R.menu.actions, menu);

    share=
        (ShareActionProvider)menu.findItem(R.id.share)
                                 .getActionProvider();
    share.setOnShareTargetSelectedListener(this);

    return(super.onCreateOptionsMenu(menu));
  }

  @Override
  public boolean onShareTargetSelected(ShareActionProvider source,
                                       Intent intent) {
    Toast.makeText(this, intent.getComponent().toString(),
                   Toast.LENGTH_LONG).show();

    return(false);
  }

  @Override
  public void afterTextChanged(Editable s) {
    shareIntent.putExtra(Intent.EXTRA_TEXT, s.toString());
    share.setShareIntent(shareIntent);
  }

  @Override
  public void beforeTextChanged(CharSequence s, int start, int count,
                                int after) {
    // ignored
  }

  @Override
  public void onTextChanged(CharSequence s, int start, int before,
                            int count) {
    // ignored
  }
}

(见this sample project