- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在使用像滑动菜单这样的 facebook,但我遇到了一个小问题,不知道如何在每个 Activity 中添加滑动菜单,比如在 PrincipalActivity 中显示这样的菜单:
PrincipalActivity.java:
public class PrincipalActivity extends Activity {
public static final String ID = "id";
public static final String ICON = "icon";
public static final String TITLE = "title";
public static final String DESCRIPTION = "description";
private RelativeLayout layout;
private MenuLazyAdapter menuAdapter;
private boolean open = false;
private final Context context = this;
private ListView listMenu;
private TextView appName;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.principal);
this.listMenu = (ListView) findViewById(R.id.listMenu);
this.layout = (RelativeLayout) findViewById(R.id.layoutToMove);
this.appName = (TextView) findViewById(R.id.appName);
this.menuAdapter = new MenuLazyAdapter(this, MenuEventController.menuArray.size() == 0 ? MenuEventController.getMenuDefault(this) : MenuEventController.menuArray);
this.listMenu.setAdapter(menuAdapter);
this.layout.setOnTouchListener(new OnSwipeTouchListener() {
public void onSwipeRight() {
if(!open){
open = true;
MenuEventController.open(context, layout, appName);
MenuEventController.closeKeyboard(context, getCurrentFocus());
}
}
public void onSwipeLeft() {
if(open){
open = false;
MenuEventController.close(context, layout, appName);
MenuEventController.closeKeyboard(context, getCurrentFocus());
}
}
});
this.listMenu.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
//Your intent object is null, you need set a intent to this object,
//like in 0 position
Intent intent = null;
if(position == 0){
//action
//Here you need create the intent
//LOOK
intent = new Intent(PrincipalActivity.this, org.shipp.activity.Test.class);
} else if(position == 1){
//action
//Here you need create the intent
intent = new Intent(PrincipalActivity.this, org.shipp.activity.Test2.class);
} else if(position == 2){
//if activity is this just close menu before verify if menu is open
if(open){
open = false;
MenuEventController.close(context, layout, appName);
MenuEventController.closeKeyboard(context, view);
}
} else if(position == 3){
//Here you need create the intent
//intent = new Intent(this, MyNewActivity3.class);
} else if(position == 4){
//Here you need create the intent
//intent = new Intent(this, MyNewActivity4.class);
} else if(position == 5){
//Here you need create the intent
//intent = new Intent(this, MyNewActivity5.class);
} else if(position == 6){
//Here you need create the intent
//intent = new Intent(this, MyNewActivity6.class);
} else if(position == 7){
//Here you need create the intent
//intent = new Intent(this, MyNewActivity7.class);
}
//Check the position if different of current a intent are started else menu just closed
if(position != 2){
startActivity(intent);
PrincipalActivity.this.finish();
overridePendingTransition(R.anim.slide_left, R.anim.slide_left);
}
}
});
}
public void openCloseMenu(View view){
if(!this.open){
this.open = true;
MenuEventController.open(this.context, this.layout, this.appName);
MenuEventController.closeKeyboard(this.context, view);
} else {
this.open = false;
MenuEventController.close(this.context, this.layout, this.appName);
MenuEventController.closeKeyboard(this.context, view);
}
}
}
主体.xml:
<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:background="@drawable/menu_bg"
tools:context=".PrincipalActivity" >
<include layout="@layout/actionbar_menu" android:id="@+id/actionBarMenu"/>
<ListView
android:id="@+id/listMenu"
android:layout_below="@+id/actionBarMenu"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:divider="#282828"
android:dividerHeight="1dip"
android:background="#3F3F3F"
android:fadingEdge="none"
android:listSelector="@drawable/list_selector">
</ListView>
<RelativeLayout
android:id="@+id/layoutToMove"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/actionBar"
android:background="#282828">
<include layout="@layout/actionbar_layout" android:id="@+id/actionBar"/>
<ImageButton
android:id="@+id/menuButton"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_alignBottom="@+id/actionBar"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:onClick="openCloseMenu"
android:src="@drawable/menu"
android:background="@android:color/transparent" />
<Button
android:id="@+id/separator"
android:layout_width="1dp"
android:layout_height="50dp"
android:layout_toRightOf="@+id/menuButton"
android:background="@drawable/custom_button_black" />
</RelativeLayout>
</RelativeLayout>
在测试 Activity 中,我还想显示滑动菜单
测试.java:
public class Test extends PrincipalActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.test);
}
}
测试.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="186dp"
android:text="Test" />
</RelativeLayout>
所以请告诉我我的代码应该是什么样子,我需要在我的所有 Activity 中添加什么代码来显示滑动菜单。
最佳答案
我认为您可能需要重新考虑您的设计。我已经为使用滑动菜单的客户制作了很多商业应用程序。在这样的应用程序中,我通常有一个中心 Activity ,其他都是 fragment , Activity 本身可能有标题栏、选项卡、菜单,或者什么都没有,但所有复杂的 View 都是 fragment 。通常,您希望 Activity 在所有屏幕中实现最常见的 View 和控件,无论如何都将具有相同的功能。
如果您真的必须这样做,我建议创建一个父类来处理所有滑动功能,并让需要滑动功能的 Activity 继承自它。
在任何情况下,您都希望使用 fragment ,无论是来自支持库,还是如果您的目标 API 足够高,只需使用常规 fragment 。
那么你应该研究的是 fragment 交易动画,以及改变 fragment View 的位置。
关于android - 如何在每个 Activity 中显示滑动菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17289748/
这是在我的 MainActivity 中用作 BroadcastReceiver 的代码 mRegistrationBroadcastReceiver = new BroadcastRecei
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我想在大部分时间隐藏 UISearchBar,只在用户需要时调用它来显示。 我在 Interface Builder 中放置了一个 UISearchBar 并将其隐藏在 View 后面,当用户单击按钮
我有一个包含 CCMenuItemImage 的菜单(“myMenu”)。我希望此菜单能够检测手指滑动并相应地滑动。 我的问题是 CCMenuItemImage 似乎吸收了触摸事件。当用户触摸 CCM
我正在寻找一个简单的 jQuery 或 Javascript 解决方案,以使导航侧边栏在用户向下滚动页面时顺利跟随用户。像这里一样:http://ucon-acrobatics.com/shop/ 任
我有一个 ListView 控件来显示项目,我想提供一个滑动/滑动手势来选择一个项目。我用 GestureRecognizer类来识别交叉滑动手势,但我还想通过水平移动选择的项目来为这个手势设置动画。
我想将 String 行标记化为标记(存储到 String 表中),并且我只能使用 java.io.*它是为了实现一个计算器。 例如:第一行:1+2+3第二行:1+ 2*3(标记之间有空格) 进入表{
我有一个 ListView 控件来显示项目,我想提供一个滑动/滑动手势来选择一个项目。我用 GestureRecognizer类来识别交叉滑动手势,但我还想通过水平移动选择的项目来为这个手势设置动画。
我有一个导航栏,当单击菜单图标时,它将滑入“#secondary-nav”并隐藏“#primary-nav”。然而 jquery 似乎没有显示“#secondary-menu”。下面提供的是 HTMl
这个问题已经有答案了: how to make a sliding up panel like the Google Maps app? (2 个回答) 已关闭 7 年前。 我正在寻找类似的实现,如下
我有 ViewPager(Slide) 和 3 张图片。共有三个图像是通过 Internet 下载的。如果我将图片换到服务器上的另一台服务器上,链接保持不变,但应用程序中的图片没有改变,仍然是缓存中的
我在 gridview 中创建了两个按钮。 我想达到以下目的,但不知道应该用什么方法? 首先我触摸第一个按钮,将显示 toast 1 msg。通过将我的手指滑到第二个按钮而不抬起我的手指,将显示 to
所以我设置了一个小的 jquery 动画,用户将鼠标悬停在容器上一段时间,这会导致容器 split ,然后显示内部信息。 我不希望鼠标一进入容器就开始动画,所以我在动画上放了一个delay()。现在动
这个问题在这里已经有了答案: Simulate swipe with mouse in javascript (5 个答案) 关闭 7 年前。
我希望我的 Sprite 像在冰上一样滑动。因此,如果他在地面上,那么他可以正常行走,但当他接触冰时,他会滑动,直到有东西阻止他。有谁知道如何才能做到这一点?谢谢 最佳答案 像“Sprite Move
我的代码有几个问题:HTML: Bellevue
我正在尝试实现从 fragment1 过渡到 fragment2 的滑动动画。我正在使用 setCustomAnimations 方法。而且我知道我需要使用框架方法来替换 fragment 。 我的代
我不知道你们是否听说过 app chomp,但应用程序中有一个布局,如下图所示。我想知道他们是如何设置的,我将如何使用它来为我自己的应用程序制作类似的东西。有趣的是,当你滑动时,没有像水平 Scrol
我想检测用户何时在一个单元格占据整个屏幕宽度的 collectionView 中向左或向右滑动。是否可以不添加手势识别器。我试过添加手势识别器,但只有当我们将 collectionView 的 scr
我正在尝试开发一个应用程序来复制类似 tinder 的基于滑动的提要。该应用程序的想法与火种非常相似,也具有向右滑动和向左滑动匹配功能。 到目前为止我做了什么-我在 MongoDB 中创建了一个刷卡集
我是一名优秀的程序员,十分优秀!