码迷,mamicode.com
首页 > 移动开发 > 详细

我的手机管家(16) 应用管理 界面设计

时间:2016-07-05 14:17:24      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

应用管理的界面与进程管理的界面是一样的,

只是增加一个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) 应用管理 界面设计

标签:

原文地址:http://www.cnblogs.com/chengbao/p/5643165.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!