res\layout\Contact_us.xml: Invalid file name: must contain only [a-z0-9_.]

后端 未结 6 1752
有刺的猬
有刺的猬 2020-12-09 15:09
public class main extends Activity {

    EditText username,password1;
    Button sub;
    String uname,pass;

    @Override
    public void onCreate(Bundle savedIns         


        
6条回答
  •  悲哀的现实
    2020-12-09 15:56

    it should be contactus.xml, You should follow below listed naming convention:

    File name must contain only lowercase a-z, 0-9, or _.

    only a-z,mind that not capital...and white-space not allowed
    
    name must start with a character.not with a Number(0-9)
    
    name only _ symbol allowed.no other symbol alowed.
    

提交回复
热议问题