When developing android, we usually use xml when developing a layout file.
example)
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
...
I have a query at that point. How to access http://schemas.android.com/apk/res/android ?
As I found some information. I know that is not a URL, it is URI. So can not access through the internet. Then where is namespace information? How can access that information?