What is "android.R.layout.simple_list_item_1"?
android.R.layout
contains all of the publicly available layouts that the Android OS uses to display various items. android.R.layout.simple_list_item_1
is, as it's named, just a simple layout to display a snippet of text. It saves you from having to write simple layouts when using adapters and also affords you the native look and theme of the system in your application with minimal effort.
I have included the source from the GitHub mirror of the android.git.kernel.org repo
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2006 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:gravity="center_vertical"
android:paddingLeft="6dip"
android:minHeight="?android:attr/listPreferredItemHeight"
/>
There are some Inbuilt Layout XML files in Android API and there are listed in this Image
android.R.layout.simple_list_item_1 is one of them it is use for simple display of String
You can use Your Own Layout instead of android.R.layout.simple_list_item_1
for example If you have made a layout row.xml then you can use as
setListAdapter(new ArrayAdapter<String>(this, R.layout.row, titles));