how to set a file extension in this code ? example i set this extension ".apk" then when appear the file manager that only can see a file is this extension ".apk"
package com.devkun;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
public class Kirigaya extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.toyi);
}
public void Importf(View v) {
Intent intent = new Intent();
intent.setAction(Intent.ACTION_GET_CONTENT);
intent.setType("file/*");
startActivity(intent);
}
}