blob: af1195a441295eda6783ee84f900c20b5b520ba1 [file] [log] [blame]
package p1.p2.p3;
import android.content.Context;
import android.widget.Toast;
import p1.p2.R;
public class Class {
public void f(Context context) {
Toast.makeText(context, R.string.hello, Toast.LENGTH_SHORT).show();
}
}