Esempio n. 1
0
	public string GetIntentFilterName(AN_PropertyTemplate intent) {

		List<AN_PropertyTemplate> actions = intent.GetPropertiesWithTag("action");
		if(actions.Count > 0) {
			return actions[0].GetValue("android:name");
		} else {
			return string.Empty;
		}

	}
Esempio n. 2
0
    public string GetIntentFilterName(AN_PropertyTemplate intent)
    {
        List <AN_PropertyTemplate> actions = intent.GetPropertiesWithTag("action");

        if (actions.Count > 0)
        {
            return(actions[0].GetValue("android:name"));
        }
        else
        {
            return(string.Empty);
        }
    }