请仔细阅读以下图片
http://i.imgur.com/3WqhVCj.jpg
我没有任何操作栏,我使用下面的布局制作了我的自定义标题,如图2所示
[LinearLayout中]
[RelativeLayout的]
[LinearLayout中]
后退按钮
App Icon
我的APP文字
溢出图标
[/的LinearLayout]
[/ RelativeLayout的]
[/ linearlayout]
现在我需要如图1所示的下拉点击溢出图标,如图2右上方红框所示
我怎么能这样做?我试过spinner它给了我弹出窗口,但我只需要在图-1中显示下拉列表。
plz建议我
答案 0 :(得分:1)
试试这个..
对于 list_popup.xml
<?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"
android:gravity="center"
android:background="#44444d"
>
<TextView
android:layout_height="50dp"
android:layout_width="match_parent"
android:text="text"
android:textSize="18dp"
android:textColor="#FFFFFF"
android:gravity="center"
/>
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="#999999"
/>
<TextView
android:layout_height="50dp"
android:layout_width="match_parent"
android:text="text1"
android:textSize="18dp"
android:textColor="#FFFFFF"
android:gravity="center"
/>
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="#999999"
/>
<TextView
android:layout_height="50dp"
android:layout_width="match_parent"
android:text="text2"
android:textSize="18dp"
android:textColor="#FFFFFF"
android:gravity="center"
/>
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="#999999"
/>
<TextView
android:layout_height="50dp"
android:layout_width="match_parent"
android:text="text3"
android:textSize="18dp"
android:textColor="#FFFFFF"
android:gravity="center"
/>
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="#999999"
/>
</LinearLayout>
java
LayoutInflater layoutInflater= (LayoutInflater)getBaseContext().getSystemService(LAYOUT_INFLATER_SERVICE);
final View popupView = layoutInflater.inflate(R.layout.list_popup, null);
final PopupWindow popupWindow = new PopupWindow(popupView,200,LayoutParams.WRAP_CONTENT);
的onClick。
show_options.setOnClickListener(new Button.OnClickListener(){
public void onClick(View arg0) {
if(popupWindow.isShowing())
popupWindow.dismiss();
else
popupWindow.showAsDropDown(show_options, 50, 0);
}
});
show_options 是溢出图标图片名称
以下是一些示例
http://rajeshandroiddeveloper.blogspot.in/2013/07/android-popupwindow-example-in-listview.html
http://www.androidhub4you.com/2012/07/how-to-create-popup-window-in-android.html
答案 1 :(得分:1)
使用对话框(Example) 并使用对话框来修正高度和宽度
WindowManager.LayoutParams wmlp = dialog.getWindow().getAttributes();
wmlp.gravity = Gravity.TOP | Gravity.CENTER_RIGHT;
BitmapDrawable bd=(BitmapDrawable) this.getResources().getDrawable(R.drawable.urdrawable);//urdrawable is your top bar image
int height=bd.getBitmap().getHeight();
//int width=bd.getBitmap().getWidth();
//wmlp.x = width; //x position
wmlp.y = height; //y position
答案 2 :(得分:1)
首先在java类文件中创建一个函数或方法:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// TODO Auto-generated method stub
MenuInflater menuINF= getMenuInflater();
menuINF.inflate(R.menu.menu, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.***:
break;
}
通过在res文件夹中添加菜单文件夹并在该文件夹中创建menu.xml来添加菜单内容(res-&gt; menu-&gt; menu.xml)
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item android:id="@+id/menu_add" android:title="Add" android:icon="@drawable/icon"/>
<item android:id="@+id/menu_DashBoard" android:title="DashBoard" />
<item android:id="@+id/menu_Master_Entry" android:title="Master Entry" />
<item android:id="@+id/menu_Product_Section" android:title="Product Section" />
<item android:id="@+id/menu_Retailers_Orders" android:title="Retailers Orders" />
</menu>
这可能对你有帮助。