This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.demo.thanh.locationdemoapp; | |
| import android.Manifest; | |
| import android.content.pm.PackageManager; | |
| import android.support.v4.app.ActivityCompat; | |
| import android.support.v4.app.FragmentActivity; | |
| import android.os.Bundle; | |
| import com.google.android.gms.maps.GoogleMap; | |
| import com.google.android.gms.maps.OnMapReadyCallback; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package iceteaviet.com.threadpool; | |
| import android.os.AsyncTask; | |
| import android.os.Build; | |
| import android.os.Bundle; | |
| import android.support.v7.app.AppCompatActivity; | |
| import android.util.Log; | |
| import java.util.ArrayList; | |
| import java.util.List; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //ReactJs | |
| var HelloMessage = React.createClass({ | |
| render: function() { | |
| return <div>Hello {this.props.name}</div>; | |
| } | |
| }); | |
| ReactDOM.render(<HelloMessage name="Hieu Tam" />, mountNode); | |
| //React Native | |
| class HelloMessage extends Component { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Text; | |
| namespace OverrideAndNew | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| BaseClass bc = new BaseClass(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Button | |
| android:id="@+id/start" | |
| android:layout_width="wrap_content" | |
| android:layout_height="wrap_content" | |
| android:layout_below="@id/check"/> | |
| <Button | |
| android:id="@+id/check" | |
| android:layout_width="wrap_content" | |
| android:layout_height="wrap_content"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Button | |
| android:id="@+id/check" | |
| android:layout_width="wrap_content" | |
| android:layout_height="wrap_content" | |
| /> | |
| <Button | |
| android:id="@+id/start" | |
| android:layout_width="wrap_content" | |
| android:layout_height="wrap_content" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Button | |
| android:id="@+id/start" | |
| android:layout_width="wrap_content" | |
| android:layout_height="wrap_content" | |
| android:layout_below="@+id/check"/> | |
| <Button | |
| android:id="@id/check" | |
| android:layout_width="wrap_content" | |
| android:layout_height="wrap_content"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Base | |
| { | |
| public Base() | |
| { | |
| Console.WriteLine("Base 0 constructor called"); | |
| } | |
| } | |
| class Child : Base | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Base | |
| { | |
| public Base() | |
| { | |
| Console.WriteLine("Base 0 constructor called"); | |
| } | |
| public Base(int i) | |
| { | |
| Console.WriteLine("Base " + i + " constructor called"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sourceSets { | |
| main { | |
| res.srcDirs = ['src/main/res', | |
| 'src/main/res/layouts/chat', | |
| 'src/main/res/layouts/home', | |
| 'src/main/res/layouts/profile' | |
| ] | |
| } | |
| } |
OlderNewer