@Inject Main main;
@Inject Service service;
Handler(){
}
В какой ВУЗ Питера лучше поступать с желанием стать веб-программистом?
И все же, какой факультет даст больше базовых знаний?
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView textView = (TextView) findViewById(R.id.textView);
File sdCard = Environment.getExternalStorageDirectory();
File[] list = sdCard.listFiles();
for (File f : list) {
String fileAbsPath = f.getAbsolutePath().toString();
fileAbsPath = fileAbsPath.replaceAll("[^\\x20-\\x7e]", "");
textView.append(fileAbsPath);
textView.append("\n");
}
textView.append("\n");
for (File f : list) {
String fileAbsPath = f.getAbsolutePath().toString();
textView.append(fileAbsPath);
textView.append("\n");
}
}
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
}