I hereby claim:
- I am showcheap on github.
- I am showcheap (https://keybase.io/showcheap) on keybase.
- I have a public key whose fingerprint is 014F CF33 2B4A EB23 090C 8A51 5453 347A 134D 846D
To claim this, I am signing this object:
<style name="AppTheme.ButtonRounded"> | |
<item name="android:gravity">center_horizontal</item> | |
<item name="android:background">@drawable/rounded_button_background</item> | |
<item name="android:padding">8dp</item> | |
<item name="android:button">@android:color/transparent</item> | |
</style> |
I hereby claim:
To claim this, I am signing this object:
{ | |
"token_type": "Bearer", | |
"expires_in": 31536000, | |
"access_token": "eyJ0eXAiOiJK.......", | |
"refresh_token": "k3aQ9Hn95........." | |
} |
public class MainActivity extends AppCompatActivity { | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activity_main); | |
} | |
// Membuat handler click tombol order | |
public void submitOrder(View view){ |
sudo: required | |
dist: trusty | |
before_install: | |
- sudo add-apt-repository --yes ppa:beineri/opt-qt551-trusty | |
- sudo apt-get update -qq | |
install: | |
- sudo apt-get -y install qt55[QTPACKAGE] |
service.getRepos("showcheap") | |
.subscribeOn(Schedulers.newThread()) | |
.observeOn(AndroidSchedulers.mainThread()) | |
.subscribe(new Subscriber<List<GithubRepo>>() { | |
@Override | |
public void onCompleted() { | |
} | |
@Override |
repoObservable = Observable.from(listRepo); | |
repoObservable.subscribe(new Subscriber<GithubRepo>() { | |
@Override | |
public void onCompleted() { | |
Log.d("GithubRepo","Load done"); | |
} | |
@Override | |
public void onError(Throwable e) { |
package com.pringstudio.cobaandroidtest; | |
import org.junit.Test; | |
import static org.junit.Assert.*; | |
/** | |
* To work on unit tests, switch the Test Artifact in the Build Variants view. | |
*/ | |
public class ExampleUnitTest { |
package com.pringstudio.cobaandroidtest; | |
import android.test.ActivityInstrumentationTestCase2; | |
import android.test.TouchUtils; | |
import android.widget.Button; | |
import android.widget.EditText; | |
import android.widget.TextView; | |
/** | |
* Created by sucipto on 4/14/16. |