maj menu
This commit is contained in:
parent
2fe3540094
commit
f38eaf6b69
@ -1,13 +1,52 @@
|
|||||||
package com.example.mastermind;
|
package com.example.mastermind;
|
||||||
|
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
|
import android.content.Intent;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
|
import android.widget.Button;
|
||||||
|
import android.view.View;
|
||||||
|
|
||||||
public class MainActivity extends Activity {
|
public class MainActivity extends Activity {
|
||||||
|
private Button mHotSeat;
|
||||||
|
private Button mORDI;
|
||||||
|
private Button mSettings;
|
||||||
|
//private Button mRules;
|
||||||
@Override
|
@Override
|
||||||
protected void onCreate(Bundle savedInstanceState) {
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
setContentView(R.layout.activity_main);
|
setContentView(R.layout.activity_main);
|
||||||
|
|
||||||
|
mHotSeat = findViewById(R.id.HotSeat);
|
||||||
|
mORDI = findViewById(R.id.ORDI);
|
||||||
|
mSettings = findViewById(R.id.Settings);
|
||||||
|
//mRules = findViewById(R.id.Rules);
|
||||||
|
/*mHotSeat.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
Intent tp1Intent = new Intent(MainActivity.this, HotSeat.class);
|
||||||
|
startActivity(tp1Intent);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
mORDI.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
Intent tp2Intent = new Intent(MainActivity.this, ORDI.class);
|
||||||
|
startActivity(tp2Intent);
|
||||||
|
}
|
||||||
|
});*/
|
||||||
|
/*mSettings.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
Intent tp3Intent = new Intent(MainActivity.this, Settings.class);
|
||||||
|
startActivity(tp3Intent);
|
||||||
|
}
|
||||||
|
});*/
|
||||||
|
/*mTP4.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
Intent tp4Intent = new Intent(MainActivity.this, TP4.class);
|
||||||
|
startActivity(tp4Intent);
|
||||||
|
}
|
||||||
|
});*/
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -6,6 +6,7 @@
|
|||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:background="#333"
|
android:background="#333"
|
||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
|
android:orientation="vertical"
|
||||||
tools:context=".MainActivity"
|
tools:context=".MainActivity"
|
||||||
>
|
>
|
||||||
|
|
||||||
@ -15,6 +16,10 @@
|
|||||||
android:scaleType="centerCrop"
|
android:scaleType="centerCrop"
|
||||||
android:src="@drawable/brain">
|
android:src="@drawable/brain">
|
||||||
</ImageView>
|
</ImageView>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/title"
|
android:id="@+id/title"
|
||||||
@ -30,10 +35,9 @@
|
|||||||
</TextView>
|
</TextView>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/solo"
|
android:id="@+id/ORDI"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_below="@id/title"
|
|
||||||
android:padding="20dp"
|
android:padding="20dp"
|
||||||
android:layout_margin="20dp"
|
android:layout_margin="20dp"
|
||||||
android:text="1 VS 1"
|
android:text="1 VS 1"
|
||||||
@ -42,10 +46,9 @@
|
|||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/duo"
|
android:id="@+id/HotSeat"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_below="@id/solo"
|
|
||||||
android:padding="20dp"
|
android:padding="20dp"
|
||||||
android:layout_margin="20dp"
|
android:layout_margin="20dp"
|
||||||
android:text="1 VS ORDI"
|
android:text="1 VS ORDI"
|
||||||
@ -53,6 +56,30 @@
|
|||||||
android:background="#aaa">
|
android:background="#aaa">
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:id="@+id/Settings"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:padding="20dp"
|
||||||
|
android:layout_margin="20dp"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:text="Paramètres"
|
||||||
|
android:textSize="15dp"
|
||||||
|
android:background="#aaa">
|
||||||
|
</Button>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:id="@+id/Rules"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:padding="20dp"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:layout_margin="20dp"
|
||||||
|
android:text="Règles"
|
||||||
|
android:textSize="15dp"
|
||||||
|
android:background="#aaa">
|
||||||
|
</Button>
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
Loading…
Reference in New Issue
Block a user