我的手机管家(16) 应用管理 界面设计
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我的手机管家(16) 应用管理 界面设计相关的知识,希望对你有一定的参考价值。
应用管理的界面与进程管理的界面是一样的,
只是增加一个ListView点击弹出PopupWindow
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <TextView style="@style/title_style" android:text="程序管理" /> <RelativeLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:padding="3dp" > <TextView android:id="@+id/app_tvMemAvail" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="内存可用:" /> <TextView android:id="@+id/app_avial_id" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:text="SD卡可用:" /> </RelativeLayout> <FrameLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1"> <ListView android:id="@+id/app_lv_list" android:layout_width="match_parent" android:layout_height="match_parent" /> <LinearLayout android:id="@+id/app_linearlayout_id" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:gravity="center" android:orientation="vertical" > <ProgressBar android:layout_width="wrap_content" android:layout_height="wrap_content" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="正在加载,请稍后..." /> </LinearLayout> <TextView android:id="@+id/app_tv_header" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="用户应用(0)" android:background="#5e5e5e" android:padding="5dp" android:textColor="#fff" android:textSize="18sp" /> </FrameLayout> </LinearLayout>
以上是关于我的手机管家(16) 应用管理 界面设计的主要内容,如果未能解决你的问题,请参考以下文章
我的手机管家(19) 应用管理 单独介绍一下PopupWindow