當前位置: 首頁>>代碼示例>>Java>>正文


Java MaterialEditText.setFocusable方法代碼示例

本文整理匯總了Java中com.rengwuxian.materialedittext.MaterialEditText.setFocusable方法的典型用法代碼示例。如果您正苦於以下問題:Java MaterialEditText.setFocusable方法的具體用法?Java MaterialEditText.setFocusable怎麽用?Java MaterialEditText.setFocusable使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.rengwuxian.materialedittext.MaterialEditText的用法示例。


在下文中一共展示了MaterialEditText.setFocusable方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: setupEditionView

import com.rengwuxian.materialedittext.MaterialEditText; //導入方法依賴的package包/類
@Override
public View setupEditionView(Object value)
{
    if (value != null)
    {
        editionValue = value;
    }

    View vr = inflater.inflate(R.layout.form_user_picker, null);
    editText = (MaterialEditText) vr.findViewById(R.id.user_picker);
    editText.setText(getHumanReadableEditionValue());

    // Asterix if required
    editText.setFloatingLabelText(getLabelText(data.getName()));

    if (TextUtils.isEmpty(data.getPlaceholder()))
    {
        editText.setHint(getLabelText(data.getName()));
    }
    else
    {
        editText.setFloatingLabelAlwaysShown(true);
        editText.setHint(data.getPlaceholder());
    }
    editText.setFocusable(false);

    editText.setIconRight(R.drawable.ic_account_circle_grey);

    editionView = vr;

    return vr;
}
 
開發者ID:Alfresco,項目名稱:activiti-android-app,代碼行數:33,代碼來源:UserPickerField.java

示例2: setupEditionView

import com.rengwuxian.materialedittext.MaterialEditText; //導入方法依賴的package包/類
@Override
public View setupEditionView(Object value)
{
    if (value != null)
    {
        editionValue = value;
    }

    View vr = inflater.inflate(R.layout.form_usergroup_picker, null);
    editText = (MaterialEditText) vr.findViewById(R.id.group_picker);
    editText.setText(getHumanReadableEditionValue());

    // Asterix if required
    editText.setFloatingLabelText(getLabelText(data.getName()));

    if (TextUtils.isEmpty(data.getPlaceholder()))
    {
        editText.setHint(getLabelText(data.getName()));
    }
    else
    {
        editText.setFloatingLabelAlwaysShown(true);
        editText.setHint(data.getPlaceholder());
    }
    editText.setFocusable(false);

    editText.setIconRight(R.drawable.ic_group_grey);

    editionView = vr;

    return vr;
}
 
開發者ID:Alfresco,項目名稱:activiti-android-app,代碼行數:33,代碼來源:UserGroupPickerField.java

示例3: setupEditionView

import com.rengwuxian.materialedittext.MaterialEditText; //導入方法依賴的package包/類
@Override
public View setupEditionView(Object value)
{
    editionValue = value;
    if (value instanceof String)
    {
        editionValue = ISO8601Utils.parse((String) value);
    }

    View vr = inflater.inflate(R.layout.form_date, null);
    editText = (MaterialEditText) vr.findViewById(R.id.date_picker);
    editText.setText(getHumanReadableEditionValue());

    // Asterix if required
    editText.setFloatingLabelText(getLabelText(data.getName()));

    if (TextUtils.isEmpty(data.getPlaceholder()))
    {
        editText.setHint(getLabelText(data.getName()));
    }
    else
    {
        editText.setFloatingLabelAlwaysShown(true);
        editText.setHint(data.getPlaceholder());
    }
    editText.setFocusable(false);

    editText.setIconRight(R.drawable.ic_event_grey);

    editionView = vr;

    return vr;
}
 
開發者ID:Alfresco,項目名稱:activiti-android-app,代碼行數:34,代碼來源:DateField.java

示例4: setupEditionView

import com.rengwuxian.materialedittext.MaterialEditText; //導入方法依賴的package包/類
@Override
public View setupEditionView(Object value)
{
    if (value != null)
    {
        editionValue = value;
    }

    getHumanReadableEditionValue();

    ViewGroup vr = (ViewGroup) inflater.inflate(R.layout.form_user_upload, null);
    editionView = vr;

    tv = (MaterialEditText) vr.findViewById(R.id.content_header);
    tv.setFocusable(false);
    tv.setHint(getLabelText(data.getName()));

    displayAddIcon();
    displayUnsupported(vr);

    // Create Item Rows
    if (!hasDisplayedEmpty(vr, editionValue, false))
    {
        for (Object item : (List) editionValue)
        {
            createRow((ViewGroup) vr.findViewById(R.id.contents_container), (RelatedContentRepresentation) item,
                    false);
        }
    }

    return vr;
}
 
開發者ID:Alfresco,項目名稱:activiti-android-app,代碼行數:33,代碼來源:UploadPickerField.java

示例5: setupEditionView

import com.rengwuxian.materialedittext.MaterialEditText; //導入方法依賴的package包/類
@Override
public View setupEditionView(Object value)
{
    if (value != null)
    {
        editionValue = value;
    }

    ViewGroup vr = (ViewGroup) inflater.inflate(R.layout.form_radiobuttons, null);
    tv = (MaterialEditText) vr.findViewById(R.id.radio_header);
    tv.setFocusable(false);
    tv.setHint(getLabelText(data.getName()));

    radioGroup = (RadioGroup) vr.findViewById(R.id.form_radio_group);
    radioGroup.setId(data.getName().length());
    radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener()
    {
        @Override
        public void onCheckedChanged(RadioGroup group, int checkedId)
        {
            tv.setError(null);
            getFormManager().evaluateViews();
        }
    });

    // Retrieve info
    if (data instanceof RestFieldRepresentation && ((RestFieldRepresentation) data).getEndpoint() != null)
    {
        List<OptionRepresentation> options = new ArrayList<>(1);
        OptionRepresentation rep = new OptionRepresentation("-1", "Loading...");
        options.add(rep);
        refreshRadioButtons(options);
    }
    else
    {
        refreshRadioButtons(data.getOptions());
    }

    editionView = vr;

    return vr;
}
 
開發者ID:Alfresco,項目名稱:activiti-android-app,代碼行數:43,代碼來源:RadioButtonsField.java


注:本文中的com.rengwuxian.materialedittext.MaterialEditText.setFocusable方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。