Posts

Showing posts with the label Monodroid

How to set the TabHost in the bottom of the screen in Android/Monodroid

Main.axml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="fill_parent"     android:layout_height="fill_parent"     android:orientation="vertical">     <TabHost         android:minWidth="25px"         android:minHeight="25px"         android:layout_width="fill_parent"         android:layout_height="wrap_content"

Load Images faster from url in Monodroid

Main.axml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:orientation="vertical"     android:layout_width="fill_parent"     android:layout_height="fill_parent">     <ImageView         android:id="@+id/imageview1"

Implementing Sliding Menu in Monodroid

Image
In  Main.axml  page place the below code <?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:tools="http://schemas.android.com/tools"     android:layout_width="fill_parent"     android:layout_height="fill_parent">     <SlidingDrawer         android:layout_alignParentRight="true"         android:id="@+id/SlidingDrawer"         android:layout_width="wrap_content"         android:layout_height="250dp"         android:content="@+id/contentLayout"         android:handle="@+id/slideButton"         android:orientation="horizontal"         android:padding="10dip">         <TableLayout             android:layout_width="fill_parent"             android:layout_height="fill_parent"             android:stretchColumns="1&

Navigate from one page to another page on Monodroid

Image
This tutorial runs through the basic process of moving from one page to another page in   android Mobile In  Main1.axml  page place the below code <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:orientation="vertical"     android:layout_width="fill_parent"     android:layout_height="fill_parent">     <Button         android:id="@+id/showSecond"         android:layout_width="fill_parent"         android:layout_height="wrap_content"         android:text="Load SecondActivity" /> </LinearLayout>

Sharing Data On Social Networking Sites(Facebook,Twitter etc..) in Monodroid

Image
This tutorial runs through the basic process of creating a share button, implementing the share Intent, passing your content to  Social Networking Site through android Mobile In Main.axml page place the below code <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:orientation="vertical"     android:layout_width="fill_parent"     android:layout_height="fill_parent">     <ImageButton         android:id="@+id/myButton"         android:layout_width="wrap_content"          android:layout_height="wrap_content"         android:layout_marginTop="50dip"         android:layout_marginLeft="50dip"         android:padding="10dip"