
Use separate layouts for the three tabs. This simplifies code and improves maintainability.
15 lines
382 B
XML
15 lines
382 B
XML
<?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">
|
|
|
|
<ListView
|
|
style="@style/AppList" />
|
|
|
|
<TextView
|
|
style="@style/AppListEmptyText"
|
|
android:text="@string/empty_installed_app_list" />
|
|
|
|
</RelativeLayout>
|