Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Default Listview row Layout

Tags:

android

I wanted to find the location of the default listView layout look, so I can copy some styles over to my custom one. Anyone have the link to the resource?

like image 662
Blake Avatar asked Mar 03 '11 22:03

Blake


2 Answers

Default R layout files are included in the SDK.

Have a look in {PathToSDK}/platforms/{android-platform}/data/res/layout (where {PathToSDK} is your SDK's root folder and {android-platform} is the specific platform you want to get layouts for)

like image 154
Farray Avatar answered Sep 23 '22 09:09

Farray


Take a look here. The list items are the simple_list_item_* files.

like image 42
Ted Hopp Avatar answered Sep 24 '22 09:09

Ted Hopp