イメージをクリックしたときにメニューを表示しようとしています。 これは私のfull_screen_image.xmlです。@ + id/photo_menuをクリックしたときに表示したいです。イメージがクリックされたときにポップアップメニューを表示する
<ImageView
android:contentDescription="verter"
android:id="@+id/photo_menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_more_vert_black_30dp"
android:tint="@android:color/white"
android:layout_marginTop="6dp"
android:layout_marginEnd="5dp"
android:layout_alignParentEnd="true"
android:layout_alignParentTop="true"/>
</RelativeLayout>
これはmenu_photo.xmlです。
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/savePhoto"
android:title="Kaydet" />
<item android:id="@+id/sharePhoto"
android:title="Paylaş" />
</menu>
これはfullScreenImageActivity.javaです:
package com.example.ahmetbesli.circles;
import android.content.Intent;
import android.net.Uri;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.View;
import android.widget.ImageView;
import com.bumptech.glide.Glide;
public class FullScreenImageActivity extends AppCompatActivity {
private ImageView arrowBack;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_full_screen_image);
arrowBack = (ImageView) findViewById(R.id.arrow_back);
arrowBack.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
finish();
}
});
ImageView fullScreenImageView = (ImageView) findViewById(R.id.fullScreenImageView);
Intent callingActivityIntent = getIntent();
if (callingActivityIntent != null) {
Uri imageUri = callingActivityIntent.getData();
if (imageUri != null && fullScreenImageView != null) {
Glide.with(this)
.load(imageUri)
.into(fullScreenImageView);
}
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu){
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.menu_photo,menu);
return true;
}
}
私はそのイメージとメニューを接続する方法を理解できませんでした。あなたのお手伝いをありがとう...