作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想创建一个自定义菜单并将该菜单放在相对布局中心的特定布局中,我试图让它像这样但没有用:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".Home" >
<LinearLayout
android:id="@+id/grid1"
android:layout_width="750dp"
android:layout_height="400dp"
android:background="@android:color/darker_gray"
android:layout_centerInParent="true"
android:orientation="vertical" >
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:id="@+id/Main"
android:title="@string/main"/>
<item android:id="@+id/Sub"
android:title="@string/sub"/>
</menu>
</LinearLayout>
</RelativeLayout>
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_home);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
//RelativeLayout layout = (RelativeLayout) findViewById(R.layout.activity_home);
getMenuInflater().inflate(R.menu.home, menu);
return true;
}
最佳答案
无法直接在布局中使用菜单。而是在 res/menu 文件夹中创建菜单布局。然后用 给它充气弹出菜单任何按钮单击事件中的监听器。以下链接中有一个很好的示例。
您也可以使用弹出菜单窗口 类(class) 使用自定义布局作为 popUpMenu。
http://www.javatpoint.com/android-popup-menu-example
关于android - 如何在android中的布局内创建自定义菜单?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20117760/
我是一名优秀的程序员,十分优秀!