【问题标题】:Error when trying to add VectorDrawable尝试添加 VectorDrawable 时出错
【发布时间】:2016-01-29 11:40:58
【问题描述】:

尝试添加 VectorDrawable 后出现错误,但有新的时又恢复了,请告诉我是什么问题?

Error:(10, 40) error: cannot find symbol class R
Error:(67, 34) error: package R does not exist
Error:(11, 40) error: cannot find symbol class R
Error:(68, 34) error: package R does not exist
Error:(11, 40) error: cannot find symbol class R
Error:(68, 34) error: package R does not exist
Error:(11, 40) error: cannot find symbol class R
Error:(68, 34) error: package R does not exist
Error:(11, 40) error: cannot find symbol class R
Error:(68, 34) error: package R does not exist
Error:Execution failed for task ':app:compileDebugJavaWithJavac'.
> Compilation failed; see the compiler error output for details.

【问题讨论】:

  • 你能给出R的定义吗?
  • 这可能是 entrice android-universe 最常见的问题...

标签: android android-vectordrawable


【解决方案1】:

这看起来是一个 R 问题,当 R 回答“包 R 不存在”时,你应该回读你运行的命令,看看其中一个函数是否没有引用需要安装的包...有时它也会拼错。

【讨论】:

    【解决方案2】:
    package com.example.kroket94.osagroup123.fragments;
    

    enter code here import android.content.Context; 导入android.net.Uri; 导入android.os.Bundle; 导入android.support.v4.app.Fragment; 导入 android.view.LayoutInflater; 导入android.view.View; 导入android.view.ViewGroup; 导入 com.example.kroket94.osagroup123.R;

    </**
     * A simple {@link Fragment} subclass.
     * Activities that contain this fragment must implement the
     * {@link FragmentGlavnaya.OnFragmentInteractionListener} interface
     * to handle interaction events.
     * Use the {@link FragmentGlavnaya#newInstance} factory method to
     * create an instance of this fragment.
     */
    public class FragmentGlavnaya extends android.app.Fragment {
        // TODO: Rename parameter arguments, choose names that match
        // the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
        private static final String ARG_PARAM1 = "param1";
        private static final String ARG_PARAM2 = "param2";
    
    
        // TODO: Rename and change types of parameters
        private String mParam1;
        private String mParam2;
    
        private OnFragmentInteractionListener mListener;
    
        public FragmentGlavnaya() {
            // Required empty public constructor
        }
    
        /**
         * Use this factory method to create a new instance of
         * this fragment using the provided parameters.
         *
         * @param param1 Parameter 1.
         * @param param2 Parameter 2.
         * @return A new instance of fragment FragmentGlavnaya.
         */
        // TODO: Rename and change types and number of parameters
        public static FragmentGlavnaya newInstance(String param1, String param2)    {
            FragmentGlavnaya fragment = new FragmentGlavnaya();
            Bundle args = new Bundle();
            args.putString(ARG_PARAM1, param1);
            args.putString(ARG_PARAM2, param2);
            fragment.setArguments(args);
            return fragment;
    }
    
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            if (getArguments() != null) {
                mParam1 = getArguments().getString(ARG_PARAM1);
                mParam2 = getArguments().getString(ARG_PARAM2);
            }
        }
    
        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
            // Inflate the layout for this fragment
            return inflater.inflate(R.layout.fragment_fragment_glavnaya, container, false);
        }
    

    2个片段错误“R”

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2013-08-01
      • 1970-01-01
      • 1970-01-01
      • 2016-01-02
      • 2018-02-01
      • 2013-10-18
      • 2012-04-22
      • 2019-06-12
      相关资源
      最近更新 更多