Can the Android layout folder contain subfolders?

前端 未结 20 2630
暗喜
暗喜 2020-11-22 03:10

Right now, I\'m storing every XML layout file inside the \'res/layout\' folder, so it is feasible and simple to manage small projects, but when there is a case of large and

20条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-22 03:50

    Not possible, but the layout folder is sorted by name. So, I prepend the layout file names with my package names. E.g. for the two packages "buying" and "playing":

    buying_bought_tracks.xml
    buying_buy_tracks.xml
    playing_edit_playlist.xml
    playing_play_playlist.xml
    playing_show_playlists.xml
    

提交回复
热议问题