歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android彈出窗口的實現(PopupWindow)

最近看到新浪微博頂部欄的微博分組效果很炫,從網上查了一些資料明白原來是用PopupWindow實現的,今天自己也寫了一個例子實現了這種效果,希望對大家有幫助。

PopupWindow就是彈出窗口的意思,類似windows下面的開始按鈕。PopupWindow可以實現浮層效果,而且可以自定義顯示位置,出現和退出時的動畫.

更多Android相關信息見Android 專題頁面 http://www.linuxidc.com/topicnews.aspx?tid=11

首先定義新浪微博的頂部欄,title_two_button.xml和main.xml

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="wrap_content" >  
  5.   
  6.     <TextView  
  7.         android:id="@+id/tvtitle"  
  8.         android:layout_width="fill_parent"  
  9.         android:layout_height="45dip"  
  10.         android:background="@drawable/search_bg"  
  11.         android:gravity="center"  
  12.         android:text="天堂沒有路"  
  13.         android:textColor="@color/black"  
  14.         android:textSize="25dip" />  
  15.   
  16.     <Button  
  17.         android:id="@+id/btn_title_left"  
  18.         android:layout_width="50dip"  
  19.         android:layout_height="35dip"  
  20.         android:layout_gravity="center_vertical"  
  21.         android:background="@drawable/title_button"  
  22.         android:textColor="@color/white" />  
  23.   
  24.     <Button  
  25.         android:id="@+id/btn_title_right"  
  26.         android:layout_width="50dip"  
  27.         android:layout_height="35dip"  
  28.         android:layout_gravity="right"  
  29.         android:layout_marginRight="2dip"  
  30.         android:layout_marginTop="4dip"  
  31.         android:background="@drawable/title_button2"  
  32.         android:textColor="@color/white" />  
  33.   
  34. </FrameLayout>  
 
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:background="@android:color/white"  
  6.     android:orientation="vertical" >  
  7.   
  8.     <include  
  9.         android:id="@+id/top_title"  
  10.         layout="@layout/title_two_button" />  
  11.   
  12. </LinearLayout>  
主要是為了實現一個這樣的界面:

 

Copyright © Linux教程網 All Rights Reserved