Android Menu半透明效果的開發(fā)實(shí)例
不知道大家是否用過天天動(dòng)聽,對(duì)于它界面上的半透明Menu效果,筆者感覺非常漂亮。下面是天天動(dòng)聽半透明Menu的截圖,欣賞下吧:

感覺還不錯(cuò)吧?那么如何實(shí)現(xiàn)這種半透明Menu效果呢?本文就重點(diǎn)討論并給出這種Menu的具體代碼實(shí)現(xiàn)過程。
首先分析下實(shí)現(xiàn)這種半透明Menu所需做的工作,并進(jìn)行合理分解:
1. 利用Shaper設(shè)置一個(gè)半透明圓角背景。
2. 定義Menu布局,主要就GridView,把圖標(biāo)都放在這個(gè)GridView。
3. Menu事件, 通過PopupWindow或者AlertDialog或者透明Activity顯示到頁面即可。
4. 按鈕的監(jiān)聽事件,實(shí)例中沒加。需要的話自己在Adapter里加。
比較簡(jiǎn)單,不多說了。
半透明圓角背景xml:
XML/HTML代碼
<?xml version="1.0" encoding="UTF-8"?> <shape android:shape="rectangle"> <solid android:color="#b4000000" /> <stroke android:width="2.0dip" android:color="#b4ffffff" android:dashWidth="3.0dip" android:dashGap="0.0dip" /> <padding android:left="7.0dip" android:top="7.0dip" android:right="7.0dip" android:bottom="7.0dip" /> <corners android:radius="8.0dip" /> </shape>
Menu布局:
XML/HTML代碼
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="fill_parent">
<GridView android:gravity="center"
android:layout_gravity="center"
android:id="@+id/menuGridChange"
android:background="@drawable/menu_bg_frame"
android:padding="5.0dip"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:horizontalSpacing="10.0dip"
android:verticalSpacing="3.0dip"
android:stretchMode="columnWidth"
android:columnWidth="60.0dip"
android:numColumns="auto_fit"/>
</LinearLayout>
主要類:
Java代碼
package com.yfz;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.AlertDialog.Builder;
import android.content.Context;
import android.graphics.drawable.BitmapDrawable;
import android.os.Bundle;
import android.util.Log;
import android.view.ContextMenu;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.view.ContextMenu.ContextMenuInfo;
import android.widget.BaseAdapter;
import android.widget.GridView;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.PopupWindow;
import android.widget.TextView;
import android.widget.LinearLayout.LayoutParams;
public class MenuTest extends Activity {
private String TAG = this.getClass().getSimpleName();
private int[] resArray = new int[] {
R.drawable.icon_menu_addto, R.drawable.icon_menu_audioinfo,
R.drawable.icon_menu_findlrc, R.drawable.icon_menu_scan
};
private String[] title = new String[]{
"添加歌曲", "歌曲信息", "查找歌詞", "搜索歌詞"
};
private static boolean show_flag = false;
private PopupWindow pw = null;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
Log.e(TAG, "------ onCreateOptionsMenu ------");
//用AlertDialog彈出menu
// View view = LayoutInflater.from(this).inflate(R.layout.menu, null);
// GridView grid1 = (GridView)view.findViewById(R.id.menuGridChange);
// grid1.setAdapter(new ImageAdapter(this));
// Builder build = new AlertDialog.Builder(this);
// build.setView(view);
// build.show();
LayoutInflater inflater = (LayoutInflater)this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.menu, null);
GridView grid1 = (GridView)view.findViewById(R.id.menuGridChange);
grid1.setAdapter(new ImageAdapter(this));
//用Popupwindow彈出menu
pw = new PopupWindow(view,LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);
//NND, 第一個(gè)參數(shù), 必須找個(gè)View
pw.showAtLocation(findViewById(R.id.tv), Gravity.CENTER, 0, 300);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
return super.onOptionsItemSelected(item);
}
public class ImageAdapter extends BaseAdapter {
private Context context;
public ImageAdapter(Context context) {
this.context = context;
}
@Override
public int getCount() {
return resArray.length;
}
@Override
public Object getItem(int arg0) {
return resArray[arg0];
}
@Override
public long getItemId(int arg0) {
return arg0;
}
@Override
public View getView(int arg0, View arg1, ViewGroup arg2) {
LinearLayout linear = new LinearLayout(context);
LinearLayout.LayoutParams params = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
linear.setOrientation(LinearLayout.VERTICAL);
ImageView iv = new ImageView(context);
iv.setImageBitmap(((BitmapDrawable)context.getResources().getDrawable(resArray[arg0])).getBitmap());
LinearLayout.LayoutParams params2 = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
params2.gravity=Gravity.CENTER;
linear.addView(iv, params2);
TextView tv = new TextView(context);
tv.setText(title[arg0]);
LinearLayout.LayoutParams params3 = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
params3.gravity=Gravity.CENTER;
linear.addView(tv, params3);
return linear;
}
}
}
到此,大家是不是覺得半透明Menu效果也是比較好實(shí)現(xiàn)的呢?可以根據(jù)自己的需要對(duì)此實(shí)例進(jìn)行修改以求更美觀好用。
以上就是對(duì)Android Menu 半透明效果的實(shí)現(xiàn),后續(xù)繼續(xù)補(bǔ)充相關(guān)資料謝謝大家對(duì)本站的支持!
- Android仿Iphone屏幕底部彈出半透明PopupWindow效果
- Android實(shí)現(xiàn)底部半透明彈出框PopUpWindow效果
- Android中設(shè)置組件半透明和透明的效果示例
- Android編程自定義圓角半透明Dialog的方法
- Android開發(fā)中Dialog半透明背景消失
- Android實(shí)現(xiàn)在列表List中顯示半透明小窗體效果的控件用法詳解
- Android編程實(shí)現(xiàn)popupwindow彈出后屏幕背景變成半透明效果
- Android編程實(shí)現(xiàn)設(shè)置按鈕背景透明與半透明及圖片背景透明的方法
- Android4.4+ 實(shí)現(xiàn)半透明狀態(tài)欄(Translucent Bars)
相關(guān)文章
Android RecyclerView選擇多個(gè)item的實(shí)現(xiàn)代碼
這篇文章主要為大家詳細(xì)介紹了Android RecyclerView選擇多個(gè)item的實(shí)現(xiàn)代碼,仿網(wǎng)易新聞客戶端頻道選擇效果,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-02-02
Android 自定義view實(shí)現(xiàn)水波紋動(dòng)畫效果
這篇文章主要介紹了 Android 自定義view實(shí)現(xiàn)水波紋動(dòng)畫效果的實(shí)例代碼,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友參考下吧2017-01-01
在Android里完美實(shí)現(xiàn)基站和WIFI定位
眾所周知的,在OPhone和大部分國(guó)產(chǎn)的Android定制機(jī)里不支持最簡(jiǎn)單實(shí)用的基站和WIFI定位,只能使用速度慢而耗電的GPS定位,但OPhone和華為/中興生產(chǎn)的一些Android定制機(jī)卻占據(jù)了一定的市場(chǎng),因此導(dǎo)致了很多使用了定位技術(shù)的Andorid應(yīng)用挺尷尬的。2014-07-07
Android Studio利用AChartEngine制作餅圖的方法
閑來無事,發(fā)現(xiàn)市面上好多app都有餅圖統(tǒng)計(jì)的功能,得空自己實(shí)現(xiàn)一下,下面這篇文章主要給大家介紹了關(guān)于Android Studio利用AChartEngine制作餅圖的相關(guān)資料,需要的朋友可以參考借鑒,下面來一起看看吧2018-10-10
Android短信驗(yàn)證碼(用的Mob短信驗(yàn)證)
這篇文章主要為大家詳細(xì)介紹了Android短信驗(yàn)證碼,使用Mob短信驗(yàn)證,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-05-05
Android實(shí)現(xiàn)指定時(shí)間定時(shí)觸發(fā)方法
這篇文章主要為大家詳細(xì)介紹了Android實(shí)現(xiàn)指定時(shí)間定時(shí)觸發(fā)方法,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2019-05-05
Android中ListView下拉刷新的實(shí)現(xiàn)代碼
這篇文章主要介紹了Android中ListView下拉刷新的實(shí)現(xiàn)代碼的相關(guān)資料,需要的朋友可以參考下2017-06-06

