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
| <?xml version="1.0" encoding="utf-8"?> | |
| <selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
| <item> | |
| <shape> | |
| <gradient android:angle="90" android:endColor="@color/white_5" android:startColor="@color/black_50" android:type="linear" /> | |
| </shape> | |
| </item> | |
| </selector> |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
| <!-- Estado Presionado --> | |
| <item android:state_pressed="true"> | |
| <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | |
| <item> | |
| <shape android:shape="rectangle"> | |
| <corners android:radius="10dp" /> |
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
| RequestQueue requestQueue = Volley.newRequestQueue(this); | |
| JsonObjectRequest jsonObjectRequest = new JsonObjectRequest( | |
| Request.Method.POST, | |
| "github.com/api/login", | |
| new Response.Listener<JSONObject>() { | |
| @Override | |
| public void onResponse(JSONObject response) { | |
| Log.e("LOGIN", response.toString()); | |
| } | |
| }, |
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 pe.taxiapp.client.widget; | |
| /** | |
| * Created by doapps on 9/9/15. | |
| */ | |
| import android.content.Context; | |
| import android.content.res.TypedArray; | |
| import android.graphics.Typeface; | |
| import android.text.Spannable; |
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
| files uploaded. |
OlderNewer