클래스 조각을 확장 할 때 오류 발생

TerZer

버그를 수정하는 방법을 모르겠습니다.
Fragment를 추가해야하는데 작동하지 않습니다.
모든 일이 발생 void firstTime()하고 오류는 온라인 상태임을 보여줍니다 setContentView(R.layout.activity_main);.

나는 이것을 고치는 방법을 정말로 모른다.
많은 것을 시도했지만 작동하지 않습니다.

제발 도와주세요.

MainActivity 클래스 :

    public class MainActivity extends AppCompatActivity
        implements NavigationView.OnNavigationItemSelectedListener {

    private MapFragment mapsFragment;
    static MainActivity can;
    static FloatingActionButton fab;
    static FloatingActionButton show;
    private String encoded_string;
    private Bitmap bitmap;
    private String picturePath;
    View rootView;
    /**
     * ATTENTION: This was auto-generated to implement the App Indexing API.
     * See https://g.co/AppIndexing/AndroidStudio for more information.
     */
    private GoogleApiClient client;

    private void initializeMapsFragment() {
        FragmentTransaction mTransaction = getSupportFragmentManager().beginTransaction();
        mapsFragment = new MapFragment();
        SupportMapFragment supportMapFragment = mapsFragment;
        mTransaction.add(R.id.map, supportMapFragment);
        mTransaction.commitNow();
    }

    @RequiresApi(api = Build.VERSION_CODES.GINGERBREAD)
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        can = this;
        Log.d("--***** MAP  ", "::Loading Map");
        setContentView(R.layout.activity_main);
        initializeMapsFragment();
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);
        fab = (FloatingActionButton) findViewById(R.id.fab);
        show = (FloatingActionButton) findViewById(R.id.show);
        show.hide();
        fab.hide();
        fab.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                callPopup();

            }
        });

        show.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                stats();

            }
        });
        DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
        ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
                can, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
        drawer.setDrawerListener(toggle);
        toggle.syncState();


        NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
        navigationView.setNavigationItemSelectedListener(can);

        Button searchButton = (Button) findViewById(R.id.searchButton);

        searchButton.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {

                EditText searchView = (EditText) findViewById(R.id.searchView1);
                String text = searchView.getText().toString();

                Geocoder geocoder = new Geocoder(getBaseContext());
                List<Address> addresses = null;

                try {
                    // Getting a maximum of 3 Address that matches the input
                    // text
                    addresses = geocoder.getFromLocationName(text, 3);
                    if (addresses != null && !addresses.equals(""))
                        search(addresses);

                } catch (Exception e) {

                }

            }
        });

        client = new GoogleApiClient.Builder(can).addApi(AppIndex.API).build();
    }


    public void start(){
        setContentView(R.layout.activity_main);
        initializeMapsFragment();
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);
        fab = (FloatingActionButton) findViewById(R.id.fab);
        show = (FloatingActionButton) findViewById(R.id.show);
        show.hide();
        fab.hide();
        fab.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                callPopup();

            }
        });

        show.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                stats();

            }
        });
        DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);

        ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
                can, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
        drawer.setDrawerListener(toggle);
        toggle.syncState();


        NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
        navigationView.setNavigationItemSelectedListener(can);


        Button searchButton = (Button) findViewById(R.id.searchButton);

        searchButton.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {

                EditText searchView = (EditText) findViewById(R.id.searchView1);
                String text = searchView.getText().toString();

                Geocoder geocoder = new Geocoder(getBaseContext());
                List<Address> addresses = null;

                try {
                    // Getting a maximum of 3 Address that matches the input
                    // text
                    addresses = geocoder.getFromLocationName(text, 3);
                    if (addresses != null && !addresses.equals(""))
                        search(addresses);

                } catch (Exception e) {

                }

            }
        });

        client = new GoogleApiClient.Builder(can).addApi(AppIndex.API).build();

    }

    protected void search(List<Address> addresses) {

        Address address = (Address) addresses.get(0);
        LatLng latLng = new LatLng(address.getLatitude(), address.getLongitude());

        MapFragment.mapView.moveCamera(CameraUpdateFactory.newLatLng(latLng));
        MapFragment.mapView.animateCamera(CameraUpdateFactory.zoomTo(15));


    }

    @RequiresApi(api = Build.VERSION_CODES.GINGERBREAD)
    @Override
    public void onBackPressed() {
        DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
        if (drawer.isDrawerOpen(GravityCompat.START)) {
            drawer.closeDrawer(GravityCompat.START);
        } else {
            super.onBackPressed();
        }
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();

        //noinspection SimplifiableIfStatement
        if (id == R.id.action_settings) {
            return true;
        }

        return super.onOptionsItemSelected(item);
    }

    @RequiresApi(api = Build.VERSION_CODES.HONEYCOMB)
    @SuppressWarnings("StatementWithEmptyBody")
    @Override
    public boolean onNavigationItemSelected(MenuItem item) {
        FragmentManager fm = getFragmentManager();
        android.support.v4.app.FragmentManager sFm = getSupportFragmentManager();

        int id = item.getItemId();


        if (id == R.id.nav_camera) {

            if (!mapsFragment.isAdded())
                sFm.beginTransaction().add(R.id.map, mapsFragment).commit();
            else
                sFm.beginTransaction().show(mapsFragment).commit();
        } else if (id == R.id.nav_share) {

            Intent sharingIntent = new Intent(Intent.ACTION_SEND);
            sharingIntent.setType("text/plain");
            String shareBody = "Check this app out --> link.kys";
            sharingIntent.putExtra(Intent.EXTRA_SUBJECT, "Best Free Parking app");
            sharingIntent.putExtra(Intent.EXTRA_TEXT, shareBody);
            startActivity(Intent.createChooser(sharingIntent, "Share via"));

        } else if (id == R.id.nav_send) {

        }

        DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
        drawer.closeDrawer(GravityCompat.START);
        return true;
    }

    public void firstTime() {


        setContentView(R.layout.firsttime);

        (findViewById(R.id.cancelBut))
                .setOnClickListener(new View.OnClickListener() {

                    public void onClick(View arg0) {

                        //View view = can.findViewById(android.R.id.content);
                        //Log.d("a", "" + ((ViewGroup)view).getChildCount() );
                        //((ViewGroup) view).removeView(view);
                        android.support.v4.app.FragmentManager sFm = getSupportFragmentManager();
                        sFm.beginTransaction().remove(mapsFragment).commitNow();
                        if(mapsFragment.isAdded()){

                            Log.d("--***** FRAGMENT  ", "::Still On");

                        }
                        start();
                    }

                });


    }
    public static void load(){

        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(can);
        if (!prefs.getBoolean("firstTime", false)) {

            can.firstTime();

            //SharedPreferences.Editor editor = prefs.edit();
            //editor.putBoolean("firstTime", true);
            //editor.commit();
        }

    }

    private void stats() {

        setContentView(R.layout.stats);



        RatingBar ratingbar = (RatingBar) findViewById(R.id.ratingBar);
        ratingbar.setRating((float) 2.0);
        ratingbar.setOnRatingBarChangeListener(new RatingBar.OnRatingBarChangeListener() {
            public void onRatingChanged(RatingBar ratingBar, float rating,
                                        boolean fromUser) {

                ratingBar.setRating((float) 2.0);

            }
        });


        ((Button) findViewById(R.id.cancBut)).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                setContentView(R.layout.content_main);
            }
        });
    }

}

XML 파일 :

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/content_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="com.robertas.parking.bestfreeparking.MainActivity"
    tools:showIn="@layout/app_bar_main">

    <fragment
        android:id="@+id/map"
        android:name="com.google.android.gms.maps.SupportMapFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context="com.robertas.parking.test.MapsActivity"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:layout_weight="0.68" />

    <EditText
        android:id="@+id/searchView1"
        android:inputType="textPersonName"
        android:layout_width="250dp"
        android:layout_height="34dp"
        android:layout_marginTop="14dp"
        android:hint="Search Location"
        android:ems="10"
        android:textColor="@android:color/black"
        android:background="@android:color/white"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true">
    </EditText>

    <Button
        android:id="@+id/searchButton"
        android:layout_width="wrap_content"
        android:layout_height="25dp"
        android:background="@drawable/places_ic_search"
        android:layout_alignBottom="@+id/searchView1"
        android:layout_alignRight="@+id/searchView1"
        android:layout_alignEnd="@+id/searchView1"
        android:layout_alignTop="@+id/searchView1"
        android:layout_marginLeft="216dp"
        android:layout_marginStart="216dp"
        android:layout_alignLeft="@+id/searchView1"
        android:layout_alignStart="@+id/searchView1" />

</RelativeLayout>

오류:

android.view.InflateException: Binary XML file line #12: Error inflating class fragment

로그:

03-10 20:21:45.036 31937-31937/com.robertas.parking.bestfreeparking D/AndroidRuntime: Shutting down VM
03-10 20:21:45.036 31937-31937/com.robertas.parking.bestfreeparking E/AndroidRuntime: FATAL EXCEPTION: main
                                                                                      Process: com.robertas.parking.bestfreeparking, PID: 31937
                                                                                      android.view.InflateException: Binary XML file line #12: Error inflating class fragment
                                                                                          at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:763)
                                                                                          at android.view.LayoutInflater.rInflate(LayoutInflater.java:806)
                                                                                          at android.view.LayoutInflater.parseInclude(LayoutInflater.java:916)
                                                                                          at android.view.LayoutInflater.rInflate(LayoutInflater.java:802)
                                                                                          at android.view.LayoutInflater.parseInclude(LayoutInflater.java:916)
                                                                                          at android.view.LayoutInflater.rInflate(LayoutInflater.java:802)
                                                                                          at android.view.LayoutInflater.inflate(LayoutInflater.java:504)
                                                                                          at android.view.LayoutInflater.inflate(LayoutInflater.java:414)
                                                                                          at android.view.LayoutInflater.inflate(LayoutInflater.java:365)
                                                                                          at android.support.v7.app.AppCompatDelegateImplV9.setContentView(AppCompatDelegateImplV9.java:284)
                                                                                          at android.support.v7.app.AppCompatActivity.setContentView(AppCompatActivity.java:143)
                                                                                          at com.robertas.parking.bestfreeparking.MainActivity.start(MainActivity.java:161)
                                                                                          at com.robertas.parking.bestfreeparking.MainActivity$8.onClick(MainActivity.java:356)
                                                                                          at android.view.View.performClick(View.java:4780)
                                                                                          at android.view.View$PerformClick.run(View.java:19866)
                                                                                          at android.os.Handler.handleCallback(Handler.java:739)
                                                                                          at android.os.Handler.dispatchMessage(Handler.java:95)
                                                                                          at android.os.Looper.loop(Looper.java:135)
                                                                                          at android.app.ActivityThread.main(ActivityThread.java:5254)
                                                                                          at java.lang.reflect.Method.invoke(Native Method)
                                                                                          at java.lang.reflect.Method.invoke(Method.java:372)
                                                                                          at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
                                                                                          at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
                                                                                       Caused by: java.lang.IllegalArgumentException: Binary XML file line #12: Duplicate id 0x7f0f00e8, tag null, or parent id 0x7f0f00e7 with another fragment for com.google.android.gms.maps.SupportMapFragment
                                                                                          at android.support.v4.app.FragmentManagerImpl.onCreateView(FragmentManager.java:2427)
                                                                                          at android.support.v4.app.FragmentController.onCreateView(FragmentController.java:120)
                                                                                          at android.support.v4.app.FragmentActivity.dispatchFragmentsOnCreateView(FragmentActivity.java:378)
                                                                                          at android.support.v4.app.BaseFragmentActivityHoneycomb.onCreateView(BaseFragmentActivityHoneycomb.java:33)
                                                                                          at android.support.v4.app.FragmentActivity.onCreateView(FragmentActivity.java:77)
                                                                                          at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:733)
                                                                                          at android.view.LayoutInflater.rInflate(LayoutInflater.java:806) 
                                                                                          at android.view.LayoutInflater.parseInclude(LayoutInflater.java:916) 
                                                                                          at android.view.LayoutInflater.rInflate(LayoutInflater.java:802) 
                                                                                          at android.view.LayoutInflater.parseInclude(LayoutInflater.java:916) 
                                                                                          at android.view.LayoutInflater.rInflate(LayoutInflater.java:802) 
                                                                                          at android.view.LayoutInflater.inflate(LayoutInflater.java:504) 
                                                                                          at android.view.LayoutInflater.inflate(LayoutInflater.java:414) 
                                                                                          at android.view.LayoutInflater.inflate(LayoutInflater.java:365) 
                                                                                          at android.support.v7.app.AppCompatDelegateImplV9.setContentView(AppCompatDelegateImplV9.java:284) 
                                                                                          at android.support.v7.app.AppCompatActivity.setContentView(AppCompatActivity.java:143) 
                                                                                          at com.robertas.parking.bestfreeparking.MainActivity.start(MainActivity.java:161) 
                                                                                          at com.robertas.parking.bestfreeparking.MainActivity$8.onClick(MainActivity.java:356) 
                                                                                          at android.view.View.performClick(View.java:4780) 
                                                                                          at android.view.View$PerformClick.run(View.java:19866) 
                                                                                          at android.os.Handler.handleCallback(Handler.java:739) 
                                                                                          at android.os.Handler.dispatchMessage(Handler.java:95) 
                                                                                          at android.os.Looper.loop(Looper.java:135) 
                                                                                          at android.app.ActivityThread.main(ActivityThread.java:5254) 
                                                                                          at java.lang.reflect.Method.invoke(Native Method) 
                                                                                          at java.lang.reflect.Method.invoke(Method.java:372) 
                                                                                          at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903) 
                                                                                          at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698) 
03-10 20:21:45.039 1499-1878/system_process W/ActivityManager:   Force finishing activity 1 com.robertas.parking.bestfreeparking/.MainActivity

                                                               [ 03-10 20:21:45.046  1499: 1878 D/         ]
                                                               HostConnection::get() New Host Connection established 0x7ffc98084ec0, tid 1878
03-10 20:21:45.051 1123-1123/? E/EGL_emulation: tid 1123: eglCreateSyncKHR(1299): error 0x3004 (EGL_BAD_ATTRIBUTE)
03-10 20:21:45.152 1499-1558/system_process I/OpenGLRenderer: Initialized EGL, version 1.4
03-10 20:21:45.194 1499-1558/system_process W/EGL_emulation: eglSurfaceAttrib not implemented
03-10 20:21:45.194 1499-1558/system_process W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0x7ffca953fb40, error=EGL_SUCCESS
03-10 20:21:45.612 1499-1518/system_process W/ActivityManager: Activity pause timeout for ActivityRecord{38e88b4d u0 com.robertas.parking.bestfreeparking/.MainActivity t155 f}
03-10 20:21:45.645 1756-2040/com.google.android.googlequicksearchbox W/EGL_emulation: eglSurfaceAttrib not implemented
03-10 20:21:45.645 1756-2040/com.google.android.googlequicksearchbox W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xe1c93620, error=EGL_SUCCESS
03-10 20:21:46.616 1622-1622/com.android.systemui W/ResourceType: No package identifier when getting value for resource number 0x00000000
03-10 20:21:46.616 1622-1622/com.android.systemui W/PackageManager: Failure retrieving resources for com.robertas.parking.bestfreeparking: Resource ID #0x0
03-10 20:21:46.832 1756-1756/com.google.android.googlequicksearchbox I/Choreographer: Skipped 69 frames!  The application may be doing too much work on its main thread.
03-10 20:21:47.332 1756-2040/com.google.android.googlequicksearchbox W/OpenGLRenderer: Incorrectly called buildLayer on View: aep, destroying layer...
03-10 20:21:47.448 1499-1577/system_process W/AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client
03-10 20:21:47.465 31937-31937/? I/Process: Sending signal. PID: 31937 SIG: 9
03-10 20:21:47.474 1499-14634/system_process I/WindowState: WIN DEATH: Window{394fad98 u0 com.robertas.parking.bestfreeparking/com.robertas.parking.bestfreeparking.MainActivity}
03-10 20:21:47.474 1499-1874/system_process I/ActivityManager: Process com.robertas.parking.bestfreeparking (pid 31937) has died
03-10 20:21:47.475 1499-1874/system_process W/ActivityManager: Scheduling restart of crashed service com.robertas.parking.bestfreeparking/com.android.tools.fd.runtime.InstantRunService in 1000ms
03-10 20:21:47.480 1123-1123/? W/SurfaceFlinger: couldn't log to binary event log: overflow.
03-10 20:21:47.521 1499-1558/system_process D/OpenGLRenderer: endAllStagingAnimators on 0x7ffc9dfec000 (RippleDrawable) with handle 0x7ffca9734500
03-10 20:21:47.525 1499-1753/system_process W/InputMethodManagerService: Got RemoteException sending setActive(false) notification to pid 31937 uid 10058
03-10 20:21:47.537 1956-32415/com.google.android.googlequicksearchbox:search I/HotwordRecognitionRnr: Starting hotword detection.
03-10 20:21:47.537 1956-32414/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_starting gzi@c6aa4d0
03-10 20:21:47.568 1135-1912/? E/audio_hw_generic: Error opening input stream format 1, channel_mask 0010, sample_rate 16000
03-10 20:21:47.569 1135-32418/? I/AudioFlinger: AudioFlinger's thread 0xf59c4000 ready to run
03-10 20:21:47.581 2146-32417/com.google.android.gms W/IcingInternalCorpora: getNumBytesRead when not calculated.
03-10 20:21:47.584 1956-32414/com.google.android.googlequicksearchbox:search I/MicrophoneInputStream: mic_started gzi@c6aa4d0
03-10 20:21:47.602 1956-1956/com.google.android.googlequicksearchbox:search I/HotwordWorker: onReady
03-10 20:21:47.629 2146-2248/com.google.android.gms W/Settings: Setting adb_enabled has moved from android.provider.Settings.Secure to android.provider.Settings.Global.
03-10 20:21:47.629 2146-2248/com.google.android.gms I/Icing: Usage reports 1 indexed 1 rejected 0 imm upload true
03-10 20:21:47.634 2146-2248/com.google.android.gms W/Icing: App history upload skipped 1 0 0
03-10 20:21:48.101 1135-1535/? W/AudioFlinger: write blocked for 469 msecs, 16 delayed writes, thread 0xf58ac000
03-10 20:21:48.503 32429-32429/? I/art: Not late-enabling -Xcheck:jni (already on)
03-10 20:21:48.507 1499-1518/system_process I/ActivityManager: Start proc 32429:com.robertas.parking.bestfreeparking/u0a58 for service com.robertas.parking.bestfreeparking/com.android.tools.fd.runtime.InstantRunService
03-10 20:21:48.775 32429-32429/com.robertas.parking.bestfreeparking I/FirebaseInitProvider: FirebaseApp initialization unsuccessful
03-10 20:21:48.777 32429-32429/com.robertas.parking.bestfreeparking I/InstantRun: Starting Instant Run Server for com.robertas.parking.bestfreeparking
03-10 20:21:48.777 1499-14635/system_process W/ActivityManager: getRunningAppProcesses: caller 10058 does not hold REAL_GET_TASKS; limiting output
OneCricketeer

모든 것은 firstTime () void에서 발생하며 오류는 setContentView (R.layout.activity_main); 줄에 있음을 보여줍니다.

당신은 이것을 할 수 없습니다.

start()firstTime()활동 / 응용 프로그램에 대한 진입 점 수 없습니다.
onCreate()그리고 그것은 당신이 전화 할 수있는 곳 setContentView(R.layout.activity_main)입니다.

그럼에도 불구하고 static모든 활동을 "로드"하는 메서드는 작동하지 않습니다.

public static void load(){

    SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(can);
    if (!prefs.getBoolean("firstTime", false)) {

        can.firstTime(); // This doesn't work like this

    }

}

특히 MainActivity.load()다른 수업에서 다른 곳을했다면.


오류를 읽고 start()-> setContentView()문제가 발생 하는지 확인하십시오 .

  at android.support.v7.app.AppCompatActivity.setContentView(AppCompatActivity.java:143)
  at com.robertas.parking.bestfreeparking.MainActivity.start(MainActivity.java:161)
  at com.robertas.parking.bestfreeparking.MainActivity$8.onClick(MainActivity.java:356)
  at android.view.View.performClick(View.java:4780)

그리고 실제 오류 메시지

com.google.android.gms.maps.SupportMapFragment의 다른 조각과 중복 ID 0x7f0f00e8, 태그 null 또는 상위 ID 0x7f0f00e7

Fragment "@+id/maps"가 이미 FragmentMangerActivity 클래스 에 추가 되어 복제되었음을 의미합니다.


활동 적으로 호출하지 않아야 setContentView외부의 onCreate.

그 이유는 당신은 전화 =되고 setContentView, 따라서 제거, MapFragment그래서 전체 루트 뷰에서 (다른보기) ) 1FragmentManger 찾을 수있는 일 이전에 추가, 2) 당신이 사용했던 모든보기 findViewById전에는 (아마도) 더 이상 존재하지 않습니다.

일부 활동의 내용을 "교체"하려면 Fragments + FrameLayout + FragmentTransaction.replace()메서드 호출 을 사용해야합니다 .

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

navGraph 속성을 추가 할 때 클래스 Fragment 확장 오류

분류에서Dev

FirefoxProfile에 확장을 추가 할 때 오류 발생

분류에서Dev

조각 onCreateView : 클래스 조각을 확장하는 동안 오류가 발생했습니다.

분류에서Dev

파생 클래스 속성을 Angular의 기본 클래스 생성자에 전달할 때 오류 발생

분류에서Dev

클래스 조각을 확장하는 동안 오류가 발생했습니다.

분류에서Dev

Yii 2 용 MongoDB 확장을 설치할 때 오류가 발생했습니다.

분류에서Dev

테이블 스크래핑을 시도 할 때 오류 발생

분류에서Dev

파일을 데이터베이스에 저장할 때 오류 발생

분류에서Dev

mySQL : 외래 키 생성을 시도 할 때 오류 발생

분류에서Dev

클래스 조각 확장 오류, Xamarin

분류에서Dev

열거 형 클래스 속성이있는 개체를 저장하려고 할 때 EF Core 3 오류 발생

분류에서Dev

JComboBox 확장, addItem 및 String []으로 빌드 할 때 오류 발생

분류에서Dev

laravel에서 ñ으로 이름을 저장할 때 오류 발생

분류에서Dev

두 번째로 클래스를 인스턴스화 할 때 오류 발생

분류에서Dev

Python-배열을 분석하기 위해 클래스 함수를 호출 할 때 오류 발생

분류에서Dev

버튼을 클릭 할 때 오류가 발생했습니다.

분류에서Dev

오류 발생 : A를 확장하는 클래스 B에 대해 'typeof B'유형을 'typeof A'유형에 할당 할 수 없습니다.

분류에서Dev

matplotlib 플롯을 생성하고 저장하는 스크립트를 호출 할 때 오류 발생

분류에서Dev

확장 방법 : Travis CI에서 실행할 때 '비 정적 멤버에 액세스하려면 개체 참조가 필요합니다'오류 발생

분류에서Dev

소스 목록을 업데이트 할 때 오류 발생

분류에서Dev

소스 목록을 업데이트 할 때 오류 발생

분류에서Dev

소스 목록을 업데이트 할 때 오류 발생

분류에서Dev

시스템을 시작할 때 오류가 발생합니다.

분류에서Dev

시스템을 시작할 때 오류가 발생합니다.

분류에서Dev

urllib.reques로 웹 스크래핑을 시도 할 때 오류 발생

분류에서Dev

ARM을 사용하여 VM 확장 집합을 재배포 할 때 오류 발생

분류에서Dev

Intent (context, Class) not working 클래스 객체를 전달할 때 오류 발생

분류에서Dev

배열 클래스를 템플릿으로 전환 할 때 오류 발생

분류에서Dev

연결된 목록 C ++로 클래스를 시도 할 때 오류 발생

Related 관련 기사

  1. 1

    navGraph 속성을 추가 할 때 클래스 Fragment 확장 오류

  2. 2

    FirefoxProfile에 확장을 추가 할 때 오류 발생

  3. 3

    조각 onCreateView : 클래스 조각을 확장하는 동안 오류가 발생했습니다.

  4. 4

    파생 클래스 속성을 Angular의 기본 클래스 생성자에 전달할 때 오류 발생

  5. 5

    클래스 조각을 확장하는 동안 오류가 발생했습니다.

  6. 6

    Yii 2 용 MongoDB 확장을 설치할 때 오류가 발생했습니다.

  7. 7

    테이블 스크래핑을 시도 할 때 오류 발생

  8. 8

    파일을 데이터베이스에 저장할 때 오류 발생

  9. 9

    mySQL : 외래 키 생성을 시도 할 때 오류 발생

  10. 10

    클래스 조각 확장 오류, Xamarin

  11. 11

    열거 형 클래스 속성이있는 개체를 저장하려고 할 때 EF Core 3 오류 발생

  12. 12

    JComboBox 확장, addItem 및 String []으로 빌드 할 때 오류 발생

  13. 13

    laravel에서 ñ으로 이름을 저장할 때 오류 발생

  14. 14

    두 번째로 클래스를 인스턴스화 할 때 오류 발생

  15. 15

    Python-배열을 분석하기 위해 클래스 함수를 호출 할 때 오류 발생

  16. 16

    버튼을 클릭 할 때 오류가 발생했습니다.

  17. 17

    오류 발생 : A를 확장하는 클래스 B에 대해 'typeof B'유형을 'typeof A'유형에 할당 할 수 없습니다.

  18. 18

    matplotlib 플롯을 생성하고 저장하는 스크립트를 호출 할 때 오류 발생

  19. 19

    확장 방법 : Travis CI에서 실행할 때 '비 정적 멤버에 액세스하려면 개체 참조가 필요합니다'오류 발생

  20. 20

    소스 목록을 업데이트 할 때 오류 발생

  21. 21

    소스 목록을 업데이트 할 때 오류 발생

  22. 22

    소스 목록을 업데이트 할 때 오류 발생

  23. 23

    시스템을 시작할 때 오류가 발생합니다.

  24. 24

    시스템을 시작할 때 오류가 발생합니다.

  25. 25

    urllib.reques로 웹 스크래핑을 시도 할 때 오류 발생

  26. 26

    ARM을 사용하여 VM 확장 집합을 재배포 할 때 오류 발생

  27. 27

    Intent (context, Class) not working 클래스 객체를 전달할 때 오류 발생

  28. 28

    배열 클래스를 템플릿으로 전환 할 때 오류 발생

  29. 29

    연결된 목록 C ++로 클래스를 시도 할 때 오류 발생

뜨겁다태그

보관