2016-07-27 75 views
0

我需要在我的應用程序中實現自己的Facebook反應彈出窗口。雖然搜索我遇到了下面的github應用程序https://github.com/chRyNaN/Reactions。我試圖使用下面的一組代碼在ReactionView類中調用Show方法。如何實現Facebook的新emoting emojis:愛,哈哈,哇,傷心和憤怒在android?

ReactionView reactionView = new ReactionView(MainActivity.this); 
     final Button mReactionView = (Button)findViewById(R.id.openpopup); 
     mReactionView.setOnTouchListener(new View.OnTouchListener() { 
      @Override 
      public boolean onTouch(View v, MotionEvent event) {    
       reactionView.show(event); 
       return true; 
      } 
     }); 

但反應彈出窗口不可見。我不確定,我錯過了什麼?有人可以幫助我嗎?

注意:佈局文件夾和主要活動類缺少Github源文件。

回答

0

可以推出這樣

public class MainActivity extends AppCompatActivity { 

    private ReactionView reactionView; 
    private Button button; 

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_main); 

     init(); 

    } 

    private void init() { 
     reactionView = (ReactionView) findViewById(R.id.reaction); 
     button = (Button) findViewById(R.id.button); 

     button.setOnTouchListener(new View.OnTouchListener() { 
      @Override 
      public boolean onTouch(View view, MotionEvent motionEvent) { 
       reactionView.show(motionEvent); 
       return false; 
      } 
     }); 
    } 
} 

這裏是佈局

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/activity_main" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:gravity="center" 
    tools:context="me.superup.reactions.MainActivity"> 

    <Button 
     android:id="@+id/button" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="@string/app_name"/> 

    <me.superup.reactions.reactions.ReactionView 
     android:id="@+id/reaction" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_below="@+id/button"/> 

</RelativeLayout>