質問編集履歴

2

イベントログ

2018/03/24 10:53

投稿

dousuruyo
dousuruyo

スコア74

test CHANGED
File without changes
test CHANGED
@@ -697,3 +697,27 @@
697
697
 
698
698
 
699
699
  Nexus4 API25 Android7.1.1(エミュ)
700
+
701
+
702
+
703
+ ### イベントログにはこんな感じで出続けています
704
+
705
+
706
+
707
+ 19:51 エミュレーター: android/android-emugl/host/libs/Translator/GLES_V2/GLESv2Imp.cpp:glReadPixels:2330 error 0x502
708
+
709
+
710
+
711
+ 19:51 エミュレーター: android/android-emugl/host/libs/Translator/GLES_V2/GLESv2Imp.cpp:glTexSubImage2D:2606 error 0x500
712
+
713
+
714
+
715
+ 19:51 エミュレーター: android/android-emugl/host/libs/Translator/GLES_V2/GLESv2Imp.cpp:glReadPixels:2330 error 0x502
716
+
717
+
718
+
719
+ 19:51 エミュレーター: android/android-emugl/host/libs/Translator/GLES_V2/GLESv2Imp.cpp:glTexSubImage2D:2606 error 0x500
720
+
721
+
722
+
723
+ 19:51 エミュレーター: android/android-emugl/host/libs/Translator/GLES_V2/GLESv2Imp.cpp:glReadPixels:2330 error 0x502

1

xml追加

2018/03/24 10:53

投稿

dousuruyo
dousuruyo

スコア74

test CHANGED
File without changes
test CHANGED
@@ -606,6 +606,84 @@
606
606
 
607
607
 
608
608
 
609
+ ```xml
610
+
611
+ <?xml version="1.0" encoding="utf-8"?>
612
+
613
+ <android.support.constraint.ConstraintLayout
614
+
615
+ xmlns:android="http://schemas.android.com/apk/res/android"
616
+
617
+ xmlns:app="http://schemas.android.com/apk/res-auto"
618
+
619
+ xmlns:tools="http://schemas.android.com/tools"
620
+
621
+ android:layout_width="match_parent"
622
+
623
+ android:layout_height="match_parent"
624
+
625
+ tools:context="com.example.dousuruyo.shoot_game.MainActivity">
626
+
627
+
628
+
629
+ </android.support.constraint.ConstraintLayout>
630
+
631
+
632
+
633
+ ```
634
+
635
+
636
+
637
+ ```xml
638
+
639
+ <?xml version="1.0" encoding="utf-8"?>
640
+
641
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android"
642
+
643
+ package="com.example.dousuruyo.shoot_game">
644
+
645
+
646
+
647
+ <application
648
+
649
+ android:allowBackup="true"
650
+
651
+ android:icon="@mipmap/ic_launcher"
652
+
653
+ android:label="@string/app_name"
654
+
655
+ android:roundIcon="@mipmap/ic_launcher_round"
656
+
657
+ android:supportsRtl="true"
658
+
659
+ android:theme="@style/AppTheme">
660
+
661
+ <activity android:name=".MainActivity"
662
+
663
+ android:screenOrientation="portrait">
664
+
665
+ <intent-filter>
666
+
667
+ <action android:name="android.intent.action.MAIN"/>
668
+
669
+
670
+
671
+ <category android:name="android.intent.category.LAUNCHER"/>
672
+
673
+ </intent-filter>
674
+
675
+ </activity>
676
+
677
+ </application>
678
+
679
+
680
+
681
+ </manifest>
682
+
683
+ ```
684
+
685
+
686
+
609
687
  ### 参考にしたサイト(無断転載問題ある場合は、消します)
610
688
 
611
689