Skip to content

Instantly share code, notes, and snippets.

@Tonnie-Dev
Created August 3, 2018 09:15
Show Gist options
  • Save Tonnie-Dev/999e3f0a2963aa02109f3591a907f1e2 to your computer and use it in GitHub Desktop.
Save Tonnie-Dev/999e3f0a2963aa02109f3591a907f1e2 to your computer and use it in GitHub Desktop.
getResourses
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
/*this references to the activity's class*/
String [] animal = this.getResources().getStringArray(R.array.animals);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment