Searched +refs:android +refs:apk (Results 1 – 25 of 39) sorted by relevance
12
20 :group 'android)22 (defgroup android nil unknown29 :group 'android )34 :group 'android)39 :group 'android)86 (defun android-install-app (apk)95 (setq android-apk apk)96 (compile (format "adb install -r %s" apk)))130 (provide 'android)
2 xmlns:android="http://schemas.android.com/apk/res/android"3 xmlns:app="http://schemas.android.com/apk/res/${packageName}"4 android:layout_width="match_parent"5 android:layout_height="match_parent">8 android:background="#ccc"9 android:layout_width="300dp"10 android:layout_height="300dp"11 android:paddingLeft="20dp"12 android:paddingBottom="40dp"16 app:exampleDrawable="@android:drawable/ic_menu_add" />
4 > <resources xmlns:android="http://schemas.android.com/apk/res/android">6 > <item name="android:textColor">#FF00FF</item>
4 > <resources xmlns:android="http://schemas.android.com/apk/res/android">6 > <item name="android:textSize">20pt</item>
4 > <resources xmlns:android="http://schemas.android.com/apk/res/android">6 > <item name="android:textColor">#FF00FF</item>7 > <item name="android:textSize">20pt</item>
4 > <resources xmlns:android="http://schemas.android.com/apk/res/android">6 > <item name="android:textColor">#00FF00</item>7 > <item name="android:textSize">20pt</item>
4 > <resources xmlns:android="http://schemas.android.com/apk/res/android">6 > <item name="android:textColor">#FF0000</item>7 > <item name="android:textSize">20pt</item>
4 > <resources xmlns:android="http://schemas.android.com/apk/res/android">5 > <style name="newstyle" parent="android:Widget.Button">6 > <item name="android:textColor">#FF00FF</item>7 > <item name="android:textSize">20pt</item>
4 > <resources xmlns:android="http://schemas.android.com/apk/res/android">6 > <item name="android:layout_alignParentBottom">true</item>7 > <item name="android:layout_height">wrap_content</item>8 > <item name="android:layout_width">wrap_content</item>9 > <item name="android:text">Button</item>10 > <item name="android:textColor">#FF0000</item>11 > <item name="android:textSize">20pt</item>
4 > <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"5 > android:id="@+id/linearLayout4"6 > android:layout_width="match_parent"7 > android:layout_height="wrap_content" >10 > android:id="@+id/linearLayout5"11 > android:layout_width="wrap_content"12 > android:layout_height="match_parent" >15 > android:id="@+id/linearLayout6"16 > android:layout_width="wrap_content"17 > android:layout_height="match_parent" >[all …]
4 …ayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_height="wrap_conte…5 > <LinearLayout android:layout_height="match_parent" android:id="@+id/linearLayout5" android:la…6 > <LinearLayout android:layout_height="match_parent" android:id="@+id/linearLayout6" androi…8 > <Button android:text="Button" android:id="@+id/button6" android:layout_width="wrap_co…
1 <manifest xmlns:android="http://schemas.android.com/apk/res/android" >4 <service android:name=".${className}"5 android:exported="${isExported?string}"6 android:enabled="${isEnabled?string}" >
1 <manifest xmlns:android="http://schemas.android.com/apk/res/android" >4 <receiver android:name=".${className}"5 android:exported="${isExported?string}"6 android:enabled="${isEnabled?string}" >
1 <manifest xmlns:android="http://schemas.android.com/apk/res/android" >4 <provider android:name=".${className}"5 android:authorities="${authorities}"6 android:exported="${isExported?string}"7 android:enabled="${isEnabled?string}" >
1 <menu xmlns:android="http://schemas.android.com/apk/res/android">2 <item android:id="@+id/menu_settings"3 android:title="@string/menu_settings"4 android:orderInCategory="100"<#if buildApi gte 11>5 android:showAsAction="never"</#if> />
1 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"2 xmlns:tools="http://schemas.android.com/tools"3 android:id="@+id/${detail_name}_container"4 android:layout_width="match_parent"5 android:layout_height="match_parent"
1 <TextView xmlns:android="http://schemas.android.com/apk/res/android"2 xmlns:tools="http://schemas.android.com/tools"3 android:id="@+id/${detail_name}"4 style="?android:attr/textAppearanceLarge"5 android:layout_width="match_parent"6 android:layout_height="match_parent"7 android:padding="16dp"
1 <fragment xmlns:android="http://schemas.android.com/apk/res/android"2 xmlns:tools="http://schemas.android.com/tools"3 android:id="@+id/${collection_name}"4 android:name="${packageName}.${CollectionName}Fragment"5 android:layout_width="match_parent"6 android:layout_height="match_parent"7 android:layout_marginLeft="16dp"8 android:layout_marginRight="16dp"10 tools:layout="@android:layout/list_content" />
1 <manifest xmlns:android="http://schemas.android.com/apk/res/android"3 android:versionCode="1"4 android:versionName="1.0">6 <uses-sdk android:minSdkVersion="${minApi}" android:targetSdkVersion="${targetApi}" />8 <application android:label="@string/app_name"9 android:icon="@drawable/ic_launcher"<#if baseTheme != "none">10 android:theme="@style/AppTheme"</#if>>
1 <manifest xmlns:android="http://schemas.android.com/apk/res/android" >4 <activity android:name=".${activityClass}"6 android:label="@string/app_name"8 android:label="@string/title_${simpleName}"10 …<#if buildApi gte 16 && parentActivityClass != "">android:parentActivityName="${parentActivityClas…12 <meta-data android:name="android.support.PARENT_ACTIVITY"13 android:value="${parentActivityClass}" />
1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"2 xmlns:tools="http://schemas.android.com/tools"4 android:layout_width=<#if buildApi lt 8 >"fill_parent"<#else>"match_parent"</#if>5 android:layout_height=<#if buildApi lt 8 >"fill_parent"<#else>"match_parent"</#if> >8 android:layout_width="wrap_content"9 android:layout_height="wrap_content"10 android:layout_centerHorizontal="true"11 android:layout_centerVertical="true"12 android:text="@string/hello_world" />
1 <manifest xmlns:android="http://schemas.android.com/apk/res/android" >4 <activity android:name=".${activityClass}"6 android:label="@string/app_name"8 android:label="@string/title_${simpleName}"10 android:windowSoftInputMode="adjustResize|stateVisible"11 …<#if buildApi gte 16 && parentActivityClass != "">android:parentActivityName="${parentActivityClas…13 <meta-data android:name="android.support.PARENT_ACTIVITY"14 android:value="${parentActivityClass}" />