fansfolio SMSAppLink


Source link: https://github.com/myinnos/fansfolio_SMSAppLink

fansfolio_SMSAppLink

fans folio is a free app to maintain folio for your idols(film stars, cricket stars etc..,). It's the easiest way to connect and talk about your idol. You can share anything about your idol and make him/her famous around the world.

Kindly use the following links to use this library:

allprojects {

repositories {

 ...
maven {
 url "https://jitpack.io" 
}
  
}
 
}

And then in the other gradle file(may be your app gradle or your own module library gradle, but never add in both of them to avoid conflict.)

dependencies {
  compile 'com.github.myinnos:fansfolio_SMSAppLink:v1.0' 
}

Example

Create Android Project (set name fansfolio_SMSAppLink)
Add permissions to AndroidManifest.xml
<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Copy this code in to activity_main.xml
<?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:fitsSystemWindows="true">

<LinearLayout

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:orientation="vertical"

android:paddingLeft="24dp"

android:paddingRight="24dp"

android:paddingTop="56dp">

 <TextView

 android:layout_width="fill_parent"

 android:layout_height="wrap_content"

 android:layout_marginBottom="24dp"

 android:gravity="center"

 android:text="SEND APP TO MOBILE"

 android:textColor="@android:color/black"

 android:textSize="20dip" />

 <ImageView

 android:layout_width="wrap_content"

 android:layout_height="72dp"

 android:layout_gravity="center_horizontal"

 android:layout_marginBottom="5dp"

 android:src="@drawable/fansfolio_logo" />

 <TextView

 android:layout_width="fill_parent"

 android:layout_height="wrap_content"

 android:layout_marginBottom="40dp"

 android:gravity="center"

 android:text="fans folio"

 android:textSize="18dip" />

 <TextView

 android:layout_width="fill_parent"

 android:layout_height="wrap_content"

 android:gravity="center"

 android:layout_marginBottom="5dp"

 android:text="add country code | ex: '+919123456789'"

 android:textSize="12dip" />

 <EditText

 android:id="@+id/etMobileNumber"

 android:layout_width="match_parent"

 android:layout_height="wrap_content"

 android:hint="Mobile Number"

 android:inputType="phone" />

 <Button

 android:id="@+id/btSend"

 android:layout_width="fill_parent"

 android:layout_height="wrap_content"

 android:layout_marginBottom="24dp"

 android:layout_marginTop="24dp"

 android:padding="12dp"

 android:text="Text Me App"

 android:textAllCaps="true" />

 <TextView

 android:layout_width="fill_parent"

 android:layout_height="wrap_content"

 android:layout_marginBottom="24dp"

 android:gravity="center"

 android:text="You will recieve a one time SMS to download the app"

 android:textSize="16dip" />

</LinearLayout> </ScrollView>
Copy this code in to MainActivity.java
public class MainActivity extends AppCompatActivity {

private EditText etMobileNumber;
  private Button btSend;
  private String mobileNumber;

@Override
  protected void onCreate(@Nullable Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

 // initializing variables

etMobileNumber = (EditText) findViewById(R.id.etMobileNumber);

btSend = (Button) findViewById(R.id.btSend);

 // send button on click listener

btSend.setOnClickListener(new View.OnClickListener() {

 @Override

 public void onClick(View view) {

mobileNumber = etMobileNumber.getText().toString();

  //calling library funtion

  TextMefansfolioApp.make(MainActivity.this, mobileNumber, "one time SMS Sent! to "+ mobileNumber);

 
}

}
);

  
}
 
}

Apps using fansfolio_SMSAppLink

If you are using fansfolio_SMSAppLink in your app and would like to be listed here, please let us know by opening a new issue!

Contact

Prabhakar Thota

License

Copyright 2017 MyInnos  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at
  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

Android custom view to display books on shelf.

Bug free LabelledSpinner with native Spinner component floating label!

A Mosby based VIPER library for Android.

It allows you to create clean, modular, decoupled and easy to test apps with ease by providing you a neat toolkit for applying the VIPER architecture. It is shipped with the modules generator to relieve you from composing modules by hand and to speed up your development even more!

A simple, and elegant alerting library. This library aims to overcome the limitations of Toasts and Snackbars, while reducing the complexity of your layouts. Easily integrated into any project.

This is a library for android app development. For making a shaped image and setting it on Image View this library will help you.

An awesome sliding button library for android.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes