Показать раскрывающийся список под выбранным видом

введите здесь описание изображения

Как мне сделать это представление. Я проверил окно Spinner и PopUp, но мне это не удалось... Пожалуйста, предложите мне какие-нибудь примеры...


person Pradeep    schedule 11.03.2013    source источник
comment
его на самом деле счетчик опубликовать свой код   -  person DjHacktorReborn    schedule 11.03.2013


Ответы (4)


вам следует выбрать виджет Android QuickAction.

Быстрое вертикальное действие

введите здесь описание изображения

Это проект GitUb с открытым исходным кодом.

https://github.com/lorensiuswlt/NewQuickAction3D

https://github.com/alhneiti/Android-QuickAction

Надеюсь, что это поможет вам.

person Amit Gupta    schedule 11.03.2013

Я добился такого поведения, используя PopUpWindow, вот мой код:

// The method that displays the popup.
private void showStatusPopup(final Activity context, Point p) {

   // Inflate the popup_layout.xml
   LinearLayout viewGroup = (LinearLayout) context.findViewById(R.id.llStatusChangePopup);
   LayoutInflater layoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
   View layout = layoutInflater.inflate(R.layout.status_popup_layout, null);

   // Creating the PopupWindow
   changeStatusPopUp = new PopupWindow(context);
   changeStatusPopUp.setContentView(layout);
   changeStatusPopUp.setWidth(LinearLayout.LayoutParams.WRAP_CONTENT);
   changeStatusPopUp.setHeight(LinearLayout.LayoutParams.WRAP_CONTENT);
   changeStatusPopUp.setFocusable(true);

   // Some offset to align the popup a bit to the left, and a bit down, relative to button's position.
   int OFFSET_X = -20;
   int OFFSET_Y = 50;

   //Clear the default translucent background
   changeStatusPopUp.setBackgroundDrawable(new BitmapDrawable());

   // Displaying the popup at the specified location, + offsets.
   changeStatusPopUp.showAtLocation(layout, Gravity.NO_GRAVITY, p.x + OFFSET_X, p.y + OFFSET_Y);
}

и это макет PopUp:

<?xml version="1.0" encoding="utf-8"?>

<ImageView
    android:layout_marginLeft="11dp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/devider_popup_task_status_change" 
    android:contentDescription="@drawable/devider_popup_task_status_change"/>

<TextView
    android:id="@+id/tvInProgress"
    android:paddingLeft="10dp"
    android:layout_weight="1.0"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textColor="@color/my_black"
    android:gravity="center_vertical"
    android:clickable="true"
    android:onClick="popupStatusChangeOnClick"
    android:layout_marginLeft="11dp"
    android:layout_marginRight="4dp"
    android:text="@string/inprogress"/>

<ImageView
    android:layout_marginLeft="11dp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/devider_popup_task_status_change" 
    android:contentDescription="@drawable/devider_popup_task_status_change"/>

<TextView
    android:id="@+id/tvOnTheWay"
    android:paddingLeft="10dp"
    android:layout_weight="1.0"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textColor="@color/my_black"
    android:gravity="center_vertical"
    android:clickable="true"
    android:onClick="popupStatusChangeOnClick"
    android:layout_marginLeft="11dp"
    android:layout_marginRight="4dp"
    android:text="@string/ontheway"/>

<ImageView
    android:layout_marginLeft="11dp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/devider_popup_task_status_change" 
    android:contentDescription="@drawable/devider_popup_task_status_change"/>

<TextView
    android:id="@+id/tvComplete"
    android:paddingLeft="10dp"
    android:layout_weight="1.0"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textColor="@color/my_black"
    android:gravity="center_vertical"
    android:clickable="true"
    android:onClick="popupStatusChangeOnClick"
    android:layout_marginLeft="11dp"
    android:layout_marginRight="4dp"
    android:text="@string/complete"/>

<ImageView
    android:layout_marginLeft="11dp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/devider_popup_task_status_change" 
    android:contentDescription="@drawable/devider_popup_task_status_change"/>

<TextView
    android:id="@+id/tvFailed"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingLeft="10dp"
    android:layout_weight="1.0"
    android:gravity="center_vertical"
    android:clickable="true"
    android:onClick="popupStatusChangeOnClick"
    android:layout_marginLeft="11dp"
    android:layout_marginRight="4dp"
    android:layout_marginBottom="11dp"
    android:text="@string/failed"
    android:textColor="@color/my_black" />

When the ImageView's are only a 1 pixel deviders.

person Emil Adz    schedule 11.03.2013

Вы спрашиваете о Spinner, но вы также можете создать свой собственный всплывающий список, используя "ListPopupWindow"

person android developer    schedule 22.04.2014

вы также можете использовать спиннер-

 String[] branch={"NEW","prev",...};
 ArrayAdapter<String> list;
 spinner=(Spinner) findViewById(R.id.spinner);
    list=new ArrayAdapter<String>(this,android.R.layout.simple_spinner_item,branch);
    spinner.setAdapter(list);
    spinner.setOnItemSelectedListener(new OnItemSelectedListener() {

        @Override
        public void onItemSelected(AdapterView<?> arg0, View arg1,
                int arg2, long arg3) {
                        }
person yuva ツ    schedule 11.03.2013