1
Я искал везде, но не получил то, что хочу.Я хочу показать меню, когда я нажимаю меню гамбургера на панели инструментов
Меню Burger нажмите на панели инструментов, должно отображать меню, например меню навигации, но не слева, я хочу его с верхней стороны. Он должен иметь слайд вниз анимации
здесь две фотографии, показывая, что я хочу достичь
до значка меню нажмите:
после клика:
это мой макет xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:background="@color/white"
android:id="@+id/container"
android:focusableInTouchMode="true">
<!-- Toolbar -->
<include
layout="@layout/toolbar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<!-- main container layout -->
<LinearLayout
android:fitsSystemWindows="true"
android:background="@color/white"
android:focusableInTouchMode="true"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:orientation="vertical"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="0dp">
<!-- content container layout-->
<LinearLayout
android:orientation="vertical"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="0dp">
<EditText
android:id="@+id/player_one_id"
android:hint="@string/hint_player_one"
android:textSize="@dimen/player_name_text_size"
android:imeOptions="actionDone"
android:textColor="@color/text_color"
android:textColorHint="@color/textColorHint"
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="0dp"/>
<EditText
android:id="@+id/player_two_id"
android:textColorHint="@color/textColorHint"
android:hint="@string/hint_player_two"
android:textSize="@dimen/player_name_text_size"
android:imeOptions="actionDone"
android:textColor="@color/text_color"
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="0dp"/>
<EditText
android:id="@+id/player_three_id"
android:textColorHint="@color/textColorHint"
android:hint="@string/hint_player_three"
android:textSize="@dimen/player_name_text_size"
android:imeOptions="actionDone"
android:textColor="@color/text_color"
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="0dp"/>
<EditText
android:id="@+id/player_four_id"
android:textColorHint="@color/textColorHint"
android:hint="@string/hint_player_four"
android:textSize="@dimen/player_name_text_size"
android:imeOptions="actionDone"
android:textColor="@color/text_color"
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="0dp"/>
<TextView
android:layout_marginTop="@dimen/margin_choose_game_type"
android:text="@string/switch_game_type"
android:textColor="@color/text_color"
android:textSize="@dimen/text_view_size"
android:layout_width="wrap_content"
android:layout_weight="0.5"
android:layout_height="0dp"/>
<Spinner
android:id="@+id/spinner_game_mode_id"
android:layout_marginTop="@dimen/spinner_margin_top_size"
android:elevation="1dp"
android:spinnerMode="dropdown"
android:background="@drawable/spinner_style"
android:layout_width="match_parent"
android:textColor="@color/green_text"
android:layout_weight="1"
android:layout_height="0dp"/>
<TextView
android:textSize="@dimen/text_view_size"
android:layout_marginTop="@dimen/margin_choose_game_type"
android:layout_width="wrap_content"
android:layout_weight="0.5"
android:layout_height="0dp"
android:text="@string/switch_airchiet_xishti"/>
<Spinner
android:id="@+id/spinner_xishti_id"
android:layout_marginTop="@dimen/spinner_margin_top_size"
android:elevation="1dp"
android:background="@drawable/spinner_style"
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="0dp"/>
<Switch
android:layout_marginTop="@dimen/switch_margin_size"
android:id="@+id/wyvilebi_switch_id"
android:text="@string/pears"
android:textSize="@dimen/switch_text_size"
android:textColor="@color/text_color"
android:layout_width="match_parent"
android:layout_weight="0.5"
android:layout_height="0dp"/>
<Switch
android:layout_marginTop="@dimen/switch_margin_size"
android:id="@+id/moshla_switch_id"
android:text="@string/moshla_switch_string"
android:textSize="@dimen/switch_text_size"
android:layout_width="match_parent"
android:textColor="@color/text_color"
android:layout_weight="0.5"
android:layout_height="0dp"/>
<Button
android:layout_marginTop="@dimen/start_btn_margin_top_size"
android:id="@+id/start_game_button_id"
android:text="@string/start_game_button"
android:layout_marginBottom="@dimen/start_btn_margin_bottom_size"
android:textColor="@color/white"
android:textSize="@dimen/start_game_btn_txt_size"
android:background="@drawable/start_button_style"
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="0dp"/>
</LinearLayout>
</LinearLayout>
Почему бы не использовать Контекстное меню? Найдите его и посмотрите. –
, потому что мне нужен эффект анимации скольжения –
Как насчет 'RelativeLayout' выравнивается в верхней части родителя. – NamNH