Skip to content
Snippets Groups Projects
Commit bd116b41 authored by Axel Saint-maxin's avatar Axel Saint-maxin
Browse files

Exercice 2 Fait

parent f2251345
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,6 @@ public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
setContentView(R.layout.main);
}
}
\ No newline at end of file
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal">
<TextView
android:id="@+id/textview1"
android:text="Super Tâches"
android:textSize="120px"
android:textAlignment="center"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_margin="20dp"/>
<Button
android:id="@+id/button1"
android:text="MET TÂCHES"
android:layout_below="@id/textview1"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<Button
android:id="@+id/button2"
android:text="QUITTER"
android:layout_below="@id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</RelativeLayout>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment