菊池
提出状況のインテントを変えました。確認をお願いします。
This commit is contained in:
parent
5bb1a225ba
commit
99de732dbb
|
@ -26,11 +26,8 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
|
||||||
private TextView root;
|
private TextView root;
|
||||||
private ImageView imageRoot;
|
private ImageView imageRoot;
|
||||||
private int previousRoot = 0; //元の画像のインデックス
|
private int previousRoot = 0; //元の画像のインデックス
|
||||||
|
// 提出状況のTextViewとImageView
|
||||||
// 未提出・提出済みのボタン
|
private TextView submission;
|
||||||
private Button notSubmission;
|
|
||||||
private Button submission;
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onCreate(Bundle savedInstanceState) {
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
|
@ -50,14 +47,11 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
|
||||||
root = findViewById(R.id.root);
|
root = findViewById(R.id.root);
|
||||||
root.setOnClickListener(this);
|
root.setOnClickListener(this);
|
||||||
imageRoot = findViewById(R.id.imageRoot);
|
imageRoot = findViewById(R.id.imageRoot);
|
||||||
|
// 提出状況のインテント
|
||||||
// 未提出のボタンのインテント
|
|
||||||
notSubmission = findViewById(R.id.notSubmission);
|
|
||||||
notSubmission.setOnClickListener(this);
|
|
||||||
// 未提出のボタンのインテント
|
|
||||||
submission = findViewById(R.id.submission);
|
submission = findViewById(R.id.submission);
|
||||||
submission.setOnClickListener(this);
|
submission.setOnClickListener(this);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -83,14 +77,8 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
|
||||||
imageRoot.setImageResource(R.drawable.pin);
|
imageRoot.setImageResource(R.drawable.pin);
|
||||||
Intent toRoot = new Intent(MainActivity.this,RootSearchActivity.class);
|
Intent toRoot = new Intent(MainActivity.this,RootSearchActivity.class);
|
||||||
startActivity(toRoot);
|
startActivity(toRoot);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
// 提出状況のクリック処理
|
||||||
if(view == notSubmission){
|
|
||||||
Intent toNotsubmission = new Intent(MainActivity.this,SubmissionActivity.class);
|
|
||||||
startActivity(toNotsubmission);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(view == submission){
|
if(view == submission){
|
||||||
Intent toSubmission = new Intent(MainActivity.this,SubmissionActivity.class);
|
Intent toSubmission = new Intent(MainActivity.this,SubmissionActivity.class);
|
||||||
startActivity(toSubmission);
|
startActivity(toSubmission);
|
||||||
|
|
|
@ -108,6 +108,7 @@
|
||||||
|
|
||||||
<!-- 提出状況のレイアウト-->
|
<!-- 提出状況のレイアウト-->
|
||||||
<TextView
|
<TextView
|
||||||
|
android:id="@+id/submission"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="提出状況"
|
android:text="提出状況"
|
||||||
|
@ -116,62 +117,10 @@
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:layout_gravity="center"/>
|
android:layout_gravity="center"/>
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="359dp"
|
|
||||||
android:layout_height="0dp"
|
|
||||||
android:layout_gravity="center"
|
|
||||||
android:layout_weight="1"
|
|
||||||
android:orientation="horizontal"
|
|
||||||
android:weightSum="5">
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="未提出"
|
|
||||||
android:textSize="25dp"
|
|
||||||
android:textStyle="bold"
|
|
||||||
android:layout_weight="3"
|
|
||||||
android:gravity="center"
|
|
||||||
android:layout_gravity="center"/>
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="提出済み"
|
|
||||||
android:textSize="25dp"
|
|
||||||
android:textStyle="bold"
|
|
||||||
android:layout_weight="2"
|
|
||||||
android:gravity="center"
|
|
||||||
android:layout_gravity="center"/>
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- 未提出・提出済みのボタンのレイアウト-->
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="0dp"
|
|
||||||
android:layout_gravity="center"
|
|
||||||
android:layout_weight="5"
|
|
||||||
android:weightSum="10"
|
|
||||||
android:orientation="horizontal">
|
|
||||||
|
|
||||||
<Button
|
|
||||||
android:id="@+id/notSubmission"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
android:text="未提出"
|
|
||||||
android:textSize="25dp"
|
|
||||||
android:layout_weight="5"/>
|
|
||||||
|
|
||||||
|
|
||||||
<Button
|
|
||||||
android:id="@+id/submission"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
android:text="提出済"
|
|
||||||
android:textSize="25dp"
|
|
||||||
android:layout_weight="5"/>
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
Loading…
Reference in New Issue
Block a user