Skip to content

Commit

Permalink
Limpiado codigo
Browse files Browse the repository at this point in the history
  • Loading branch information
OscarRomaCalvo committed May 11, 2023
1 parent 3a7f14c commit 4567f4e
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 5 deletions.
5 changes: 0 additions & 5 deletions app/src/main/java/com/example/f1/FragmentClasificacion.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@
import retrofit2.Callback;
import retrofit2.Response;

/**
* A simple {@link Fragment} subclass.
* Use the {@link FragmentClasificacion#newInstance} factory method to
* create an instance of this fragment.
*/
public class FragmentClasificacion extends Fragment {
public FragmentClasificacion() {
// Required empty public constructor
Expand Down
26 changes: 26 additions & 0 deletions app/src/main/res/layout/row_posicion_carrera.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<TextView
android:id="@+id/textViewPosicion"
android:layout_width="10dp"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:textSize="18sp" />

<TextView
android:id="@+id/textViewPiloto"
android:layout_width="375dp"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:textSize="18sp" />

<TextView
android:id="@+id/textViewPuntos"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:textSize="18sp" />

</LinearLayout>

0 comments on commit 4567f4e

Please sign in to comment.