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