Main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">
<Button
android:onClick="show"
android:text="Click...
Monday, October 10, 2016
AIDE Tutorial - 26.3 In Progress Notification
Main.Xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"> <Button
android:onClick="abc"
android:text="Download"
...
AIDE Tutorial - 26.4 Expandable Notification
Main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">
<Button
android:onClick="show"
android:text="Click...
AIDE Tutorial - 26.1 Updating Notification
Main.Xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"> <Button
android:onClick="show"
android:text="Click...
AIDE Tutorial - 26.2 Multiple Notification
Main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"> <Button
android:onClick="click"
android:text="Click...
AIDE Tutorial - 25 Search Dialog
Main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"> <SearchView
android:id="@+id/mainSearchView"
...
AIDE Tutorial 24 TabHost
Main xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="top"> <TabHost android:id="@+id/th"
android:layout_width="fill_parent"
android:layout_height="wrap_content"...