Activity Mail
This commit is contained in:
@@ -26,7 +26,6 @@
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".MailActivity"
|
||||
android:screenOrientation="portrait" />
|
||||
|
||||
@@ -8,7 +8,7 @@ import androidx.appcompat.app.AppCompatActivity;
|
||||
|
||||
public class MailActivity extends AppCompatActivity {
|
||||
|
||||
private EditText edSujet, edMessage;
|
||||
private EditText etSujet, etMessage;
|
||||
private Button btnEnvoyer;
|
||||
|
||||
@Override
|
||||
@@ -16,8 +16,12 @@ public class MailActivity extends AppCompatActivity {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.form_mail);
|
||||
|
||||
|
||||
etSujet = findViewById(R.id.etSujet);
|
||||
etMessage = findViewById(R.id.etMessage);
|
||||
btnEnvoyer = findViewById(R.id.btnEnvoyer);
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user