Меню

Linearlayout android studio ошибка

I have updated my android studio and now I have a problem in my main.xml, it displays the following error:
element LinearLayout must be declared

this is my code:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent"
    android:gravity="center_vertical|center_horizontal"
    >
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/monBouton"
        android:text="Cliquez ici !"
        >
    </Button>
</LinearLayout>

this is the error message:

error : Execution failed for task ‘:app:compileDebugJava’.
Compilation failed; see the compiler error output for details.

error : cannot find symbol variable action_settings

How can I solve it?

Community's user avatar

asked Feb 20, 2014 at 19:24

MeBex's user avatar

3

Your layout files must be in res/layout folder.

Providing Resources

answered Aug 25, 2014 at 5:30

vbarinov's user avatar

vbarinovvbarinov

4634 silver badges10 bronze badges

1

Make sure you have action_settings defined inside menu’s xml file

res/menu/yourmenufile.xml

like this :

<menu 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"
    tools:context="com.example.app" >

    <item android:id="@+id/action_settings"
        android:title="@string/action_settings"
        android:orderInCategory="100"
        app:showAsAction="never" />
</menu>

answered Feb 20, 2014 at 20:40

Piyush Agarwal's user avatar

Piyush AgarwalPiyush Agarwal

25.3k8 gold badges96 silver badges110 bronze badges

0

Had the same Error. Problem was, i had my dialogfragment layout in the menu folder instead of the layout folder

answered Mar 18, 2014 at 12:34

Kedu's user avatar

KeduKedu

1,33014 silver badges26 bronze badges

I’m trying to fix this so badly but I couldn’t find where I’ve gone wrong.

The message:

Element type "LinearLayout" must be followed by either attribute specifications, ">" or "/>".

Why do I get this? Any ideas?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:weightSum="100"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"

    **<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_weight="70"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:background="#0000FF"
        android:padding="20dp"
        android:paddingBottom="10dp"
        android:gravity="center_horizontal">



    </LinearLayout>


</LinearLayout>

Jacob Parker's user avatar

asked Apr 29, 2013 at 17:45

Poorna's user avatar

It’s a pretty self-explanatory error message.

You didn’t close your LinearLayout tag. Add a > after android:orientation="vertical".

answered Apr 29, 2013 at 17:47

Kevin Coppock's user avatar

Kevin CoppockKevin Coppock

133k45 gold badges262 silver badges274 bronze badges

You missed a «>» at the end:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:weightSum="100"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

answered Apr 29, 2013 at 17:47

Neoh's user avatar

NeohNeoh

15.8k14 gold badges66 silver badges78 bronze badges

Your first LinearLayout tag isn’t closed. Add a > to the end of it, like this:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:weightSum="100"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

                                   ^

answered Apr 29, 2013 at 17:47

Cornholio's user avatar

CornholioCornholio

9851 gold badge5 silver badges22 bronze badges

Error clearly states that you missed the closing tag. Every Layout and its attribute needs to have their own opening and closing tag. Add

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_weight="70"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
/>

or

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_weight="70"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

</LinearLayout>

answered Feb 5, 2014 at 12:29

AndroidOptimist's user avatar

AndroidOptimistAndroidOptimist

1,4093 gold badges23 silver badges38 bronze badges

1

Problem: I get a lint error and warning on styles that are working, when defining the orientation of a LinearLayout in a styles file, but not when defining the orientation directly on the element. Even though the property is picked up from the styles file.

I have a base style for all my activities, containing the following:

<resources xmlns:android="http://schemas.android.com/apk/res/android">
    <style name="StandardActivity">
        <item name="android:layout_width">fill_parent</item>
        <item name="android:layout_height">fill_parent</item>
        <item name="android:orientation">vertical</item>
    </style>
</resources>

In my layout, if I add this code:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    style="@style/StandardActivity">

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:orientation="vertical">

    ...

    </LinearLayout>

    ...

</LinearLayout>

On layout_width I get a lint warning:

Use a 'layout_width' of '0dp' instead of 'fill_parent' for better performance

And on layout_height I get a lint error:

Suspicious size: this will make the view invisible, probably intended for 'layout_width'

Everything is working as expecting and the layout takes the orientation attribute set in StandardActivity. However, the error and warning are only valid when the orientation is set to horizontal. How can I get the lint in Android studio to understand that the orientation is set in the style-file?

If a explicitly add the orientation directly to the LinearLayout, the linting error and warning disappears.

Problem: I get a lint error and warning on styles that are working, when defining the orientation of a LinearLayout in a styles file, but not when defining the orientation directly on the element. Even though the property is picked up from the styles file.

I have a base style for all my activities, containing the following:

<resources xmlns:android="http://schemas.android.com/apk/res/android">
    <style name="StandardActivity">
        <item name="android:layout_width">fill_parent</item>
        <item name="android:layout_height">fill_parent</item>
        <item name="android:orientation">vertical</item>
    </style>
</resources>

In my layout, if I add this code:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    style="@style/StandardActivity">

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:orientation="vertical">

    ...

    </LinearLayout>

    ...

</LinearLayout>

On layout_width I get a lint warning:

Use a 'layout_width' of '0dp' instead of 'fill_parent' for better performance

And on layout_height I get a lint error:

Suspicious size: this will make the view invisible, probably intended for 'layout_width'

Everything is working as expecting and the layout takes the orientation attribute set in StandardActivity. However, the error and warning are only valid when the orientation is set to horizontal. How can I get the lint in Android studio to understand that the orientation is set in the style-file?

If a explicitly add the orientation directly to the LinearLayout, the linting error and warning disappears.

Столкнулся с такой проблемой появились 3 ошибки в файле activiti_main.xml Что нужно изменить?
Текст ошибок:
Ошибка№1 и 2
This LinearLayout layout or its RelativeLayout parent is possibly useless A layout with children that has no siblings, is not a scrollview or a root layout, and does not have a background, can be removed and have its children moved directly into the parent for a flatter and more efficient layout hierarchy. Issue id: UselessParent
Ошибка №3
This ScrollView layout or its LinearLayout parent is possibly useless A layout with children that has no siblings, is not a scrollview or a root layout, and does not have a background, can be removed and have its children moved directly into the parent for a flatter and more efficient layout hierarchy. Issue id: UselessParent

<?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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="10dp"
    tools:context=".MainActivity">

    <LinearLayout
        android:id="@+id/container1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:orientation="vertical">

        <LinearLayout
            android:id="@+id/container2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:padding="10dp">

            <ScrollView
                android:id="@+id/scroll"
                android:layout_width="match_parent"
                android:layout_height="match_parent">

                <LinearLayout
                    android:id="@+id/container3"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="vertical">

                    <TextView
                        android:id="@+id/textView"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:text="@string/Marhut2"
                        android:textAlignment="center"
                        android:textColor="#000000"
                        android:textColorHint="#777777"
                        android:textSize="18sp"
                        android:textStyle="bold" />

Это не весь код т.к он не уместился.

Issue

I’ve this error when I use my application :

05-01 14:18:41.000: E/AndroidRuntime(26607): FATAL EXCEPTION: main
05-01 14:18:41.000: E/AndroidRuntime(26607): java.lang.ClassCastException: android.widget.LinearLayout cannot be cast to android.widget.TextView

The method with the issue :

public void onItemClick(AdapterView<?> adapterView, View view, int postion,
        long index) {

    // Get MAC adress matching the last 17 characters of the TextView
   String info = ((TextView) view).getText().toString();    //  HERE IS THE ISSUE
   String address = info.substring(info.length() - 17);

    Intent intent = new Intent();
    intent.putExtra(EXTRA_DEVICE_ADDRESS, address);

    setResult(Activity.RESULT_OK, intent);


    BluetoothDevice device = (BluetoothDevice) view.getTag();

    showEquipementActivity(device);
}

And the XML File :

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/linearLayout1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

     <ImageView
        android:id="@+id/ImageView_tactea"
        android:layout_width="200dp"
        android:layout_height="75dp"
        android:src="@drawable/tactea"
        android:layout_gravity="center"
        android:visibility="visible" />

    <LinearLayout
        android:id="@+id/linearLayout2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:padding="5dip" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/label_list_of_devices"
            android:textSize="17dip"
            android:textStyle="bold" />

        <Button
            android:id="@+id/buttonScan"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/label_scan" />
    </LinearLayout>

    <ListView
        android:id="@+id/listViewDevices"
        android:layout_width="fill_parent"
        android:layout_height="0dip"
        android:layout_weight="1" >
    </ListView>

</LinearLayout>

This XML file is to display paired bluetooth devices and news devices found.

Can you help me ?

How to change those lines ?

   String info = ((TextView) view).getText().toString();    //  HERE IS THE ISSUE
   String address = info.substring(info.length() - 17);

Update: I get following error:

05-01 14:39:33.150: E/AndroidRuntime(7160): FATAL EXCEPTION: main 
05-01 14:39:33.150: E/AndroidRuntime(7160): java.lang.NullPointerException 
05-01 14:39:33.150: E/AndroidRuntime(7160): at com.example.cajou.DiscoverDevicesActivity.onItemClick(DiscoverDevicesActivity.ja‌​va:179) 
05-01 14:39:33.150: E/AndroidRuntime(7160): at android.widget.AdapterView.performItemClick(AdapterView.java:301) 
05-01 14:39:33.150: E/AndroidRuntime(7160): at android.widget.AbsListView.performItemClick(AbsListView.java:1276)

UPDATE 2 :

I’ve tried :

TextView textview=(TextView) ((LinearLayout)view).findViewById(R.id.textView1);
String info = textview.getText().toString(); 

But I’ve an issue with this line :

String info = textview.getText().toString(); 

UPDATE 3 :

I’ve tried :

LinearLayout ll = (LinearLayout) view;
TextView tv = (TextView) ll.findViewById(R.id.textView1);
final String info = tv.getText().toString();

But same issue…
This line is the issue :

final String info = tv.getText().toString();

Solution

use only

TextView textview = (TextView)findViewById(R.id.textView1);
String info = textview.getText().toString();

Answered By — Vallabh Lakade

Итак, в настоящее время я создаю это приложение, и это файл activity_maps.xml, который я использую / coding:

<LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android"
xmlns:tools = "http://schemas.android.com/tools"
android:layout_height = "wrap_content"
android:layout_width = "match_parent"
android:orientation = "vertical">

<fragment xmlns:android = "http://schemas.android.com/apk/res/android"
    xmlns:map = "http://schemas.android.com/apk/res-auto"
    xmlns:tools = "http://schemas.android.com/tools"
    android:id = "@+id/map"
    android:name = "com.google.android.gms.maps.SupportMapFragment"
    android:layout_width = "match_parent"
    android:layout_height = "match_parent"

<FrameLayout xmlns:android = "https://schemas.android.com/apk/res/android"
    android:layout_height = "match_parent"
    android:layout_width = "match_parent">

<Button
    android:id = "@+id/btnRestaurant"
    android:layout_height = "wrap_content"
    android:layout_width = "wrap_content"
    android:text = "Nearby Restaurants"
    android:visibility = "visible" />

<Button
    android:id = "@+id/btnHospital"
    android:layout_height = "wrap_content"
    android:layout_width = "wrap_content"
    android:text = "Nearby Hospitals"
    android:visibility = "visible" />

<Button
    android:id = "@+id/btnSchool"
    android:layout_height = "wrap_content"
    android:layout_width = "wrap_content"
    android:text = "Nearby Schools"
    android:visibility = "visible" />
</FrameLayout>

Ошибки, которые показывают, заключаются в том, что всякий раз, когда я наводю указатель мыши над linearlayout, он показывает: атрибут layout_height должен быть определен, атрибут layout_width должен быть определен, Element LinearLayout не имеет обязательного атрибута layout_height, Element LinearLayout не имеет необходимого атрибута layout_width, неверно Ориентация? Ориентация не указана, а по умолчанию горизонтально, но у этого макета есть несколько дочерних элементов, из которых хотя бы один имеет layout_width = «match_parent». Тогда это ошибки, когда я нахожу курсор над FrameLayout: должен быть определен атрибут layout_height, должен быть определен атрибут layout_width. Это ошибки, когда я нахожу курсор над тегом кнопки: должен быть определен атрибут layout_height, должен быть определен атрибут layout_width. Это ошибки, когда я нахожусь над тегами abdroid: id = «@ + id / btnwhatever», android: text = «any», android: visibility = «visible»: для тега Button обнаружен неожиданный префикс пространства имен «android» .
Когда я меняю макет приложения на это:

<fragment xmlns:android = "http://schemas.android.com/apk/res/android"
xmlns:map = "http://schemas.android.com/apk/res-auto"
xmlns:tools = "http://schemas.android.com/tools"
android:id = "@+id/map"
android:name = "com.google.android.gms.maps.SupportMapFragment"
android:layout_width = "350dp"
android:layout_height = "500dp"

<FrameLayout xmlns:android = "https://schemas.android.com/apk/res/android"
    android:layout_height = "125dp"
    android:layout_width = "75dp">

    <LinearLayout 
        xmlns:android = "https://schemas.android.com/apk/res/android"
        xmlns:tools = "https://schemas.android.com/tools"
        android:layout_height = "75dp"
        android:layout_width = "100dp"
        android:orientation = "vertical">

        <Button
            android:id = "@+id/btnRestaurant"
            android:layout_height = "10dp"
            android:layout_width = "10dp"
            android:text = "Nearby Restaurants"
            android:visibility = "visible" />

        <Button
            android:id = "@+id/btnHospital"
            android:layout_height = "10dp"
            android:layout_width = "10dp"
            android:text = "Nearby Hospitals"
            android:visibility = "visible" />

        <Button
            android:id = "@+id/btnSchool"
            android:layout_height = "10dp"
            android:layout_width = "10dp"
            android:text = "Nearby Schools"
            android:visibility = "visible" />

    </LinearLayout>
</FrameLayout>

Однако, когда я делаю макет, который не показывает ошибок, а затем открываю карту, в logcat написано: java.lang.RuntimeException: двоичный файл XML, строка № 0: необходимо указать атрибут layout_width.
Пожалуйста, помогите, спасибо.
P.S. Я только что достал тег tools: context = «» во фрагменте для публикации

Greetings,
My android application has a LinearLayout and within it a GridView which is being correctly filled with the images I want.

The problem is that when scrolling the screen down (to see the rest of the icons), the last icons get out of order and the scroll no longer works. Just restarting the app that GridView works again.

Follow the code and screen with the problem:

    <LinearLayout
    android:id="@+id/layScroll"
    android:layout_width="413dp"
    android:layout_height="447dp"
    android:background="@color/branco"
    android:orientation="horizontal"
    android:paddingLeft="0dp"
    android:paddingTop="50dp"
    android:paddingRight="0dp"
    android:paddingBottom="0dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="@id/frmPrincipal"
    app:layout_constraintStart_toStartOf="@id/frmPrincipal"
    app:layout_constraintTop_toBottomOf="@+id/imageView2">
&lt;GridView
    android:id="@+id/grvMain"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="center"
    android:columnWidth="60dp"
    android:horizontalSpacing="10dp"
    android:numColumns="2"
    android:verticalSpacing="10dp"
    app:layout_constraintTop_toTopOf="parent"&gt;

&lt;/GridView&gt;

</LinearLayout>

The Good Screen (as soon as it opens the app):

inserir a descrição da imagem aqui

The bad screen (after doing Scroll — I put several images equal to do the scroll test):

inserir a descrição da imagem aqui

After doing Scroll, the middle screen that locks for at least 15 seconds and the icons are all messed up inside GridView.

I tried using ScrollView as well and gave the same error/result.

Понял свою ошибку, надо было рассказать подробнее.

Дело в том, что я создаю список. song.xml — это шаблон списка, так выглядит каждый из его элементов. Соответственно, как вы поняли в activity_music и содержится список, поэтому я вывожу именно его. Но мне нужно сделать так, чтобы при нажатии на каждый элемент из списка выполнялся определённый метод. Для этого я хочу присвоить обработчик нажатия для LinearLayout из song.xml.

Вообще, код приложения посмотрел на одном сайте, но там всё выполняется в MainActivity. И для присвоения обработчика LinearLayout-у всего-то прописывают свойство:

XML
1
android:onClick="abcdef"

abcdef() находится в MainActivity и запускается при нажатии на LinearLayout.

Но в моём случае так не прокатит. Присвоить обработчик мне нужно во фрагменте, так как в методе обработчика я использую переменную, которую нахожу именно здесь.

Добавлено через 35 секунд

Цитата
Сообщение от ExFau$t
Посмотреть сообщение

Если нажатие происходит в активити, обработчик должен быть в активити. Данные к отображению никакого отношения не имеют. В простом случае можно использовать SharedPreference.

Как с помощью SharedPreference можно передать значение переменной в activity?

После добавления нового Activity в мой проект я получаю следующую ошибку при компиляции макета

Gradle: Ошибка синтаксического анализа XML: неверно сформированный (недопустимый токен)

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"
          android:orientation="vertical" >

<TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/tv_password"
        android:text="<password>"/>
</LinearLayout>

» http://schemas.android.com/apk/res/android» отмечен красным цветом и парит всплывающее сообщение после сообщения

URI не зарегистрирован (настройка | Настройки проекта | Схемы и DTD)

Мои настройки > Настройки проектa > Схемы и DTD выглядят так:
Изображение 25024

Я уже нашел некоторые подобные вопросы, но ничто не помогло мне решить эту проблему. Надеюсь, у кого-то есть идея…:)

07 июль 2013, в 12:47

Поделиться

Источник

7 ответов

У меня была аналогичная проблема. Однако комментарии не помогли мне в решении этой проблемы. Этот ответ из этого вопроса действительно решил мою проблему.

Резюме:

Перейдите в раздел «Файл > Структура проектa > Модули», нажмите «Добавить», затем нажмите «Андроид» и «подать заявку/ОК». Это должно решить любого, у кого есть аналогичная проблема, но комментарии по этому вопросу не помогают вам.

prolink007
15 авг. 2014, в 17:36

Поделиться

Для меня проблема возникла, когда я создал свою собственную подпапку для старого кода.

В частности, Android Studio бросила ошибку для всех файлов макета, которые не были в папке по умолчанию ../res/drawable/, но вместо этого помещена в мою собственную подпапку ../res/drawable/backup.

Antimonit
27 окт. 2014, в 18:04

Поделиться

Я получил ту же ошибку в течение долгого времени, и ни один из ответов, которые я нашел в Интернете, не помог мне, или, вероятно, я не искал правильного пути. В конце я узнал, как я назвал каталог. Итак, я пытался создать макет ландшафта для своего приложения и назвал его layout_land. Это все время показывало мне, что URI не зарегистрирована. Мне просто нужно было изменить имя каталога на макет-земля.

Сводка: Нет символов подчеркивания в именах каталогов!

moonyWolf
07 авг. 2017, в 09:11

Поделиться

Моя проблема заключалась в создании нового каталога ресурсов для некоторых анимационных работ. Файлы были .xml, и я выбрал тип файла как «xml». У меня эта проблема. Изменение типа файла на «значения», и проблема исчезла. Не знаю, почему, может кто-нибудь объяснить это мне? Я использую Android Studio на iMac.

G O’Rilla
20 июль 2015, в 14:53

Поделиться

Для меня эта проблема исчезла, когда я внес следующие изменения в мою структуру проекта на Android Studio. file-> структура проекта → Местоположение SDK → включить галочку для «Использовать встроенный JDK (рекомендуется). Надеюсь, это поможет кому-то.

mask
01 дек. 2018, в 02:00

Поделиться

Некоторые специальные символы здесь не разрешены.
Непосредственно для назначения текста с предупреждением

android:text="value"

@string файл из get, а затем предупреждение

android:text="@string/hello"

RES/значения/strings.xml

 <?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="hello">Hello!</string>
</resources>

Bhuvaneshwaran Vellingiri
06 июль 2017, в 12:44

Поделиться

Перейдите к настройкам > Язык и структурa > Схемы и DTD
здесь добавьте Uri, используемый в вашем коде.

Alpha
13 окт. 2016, в 04:25

Поделиться

Ещё вопросы

  • 1Как соединить 2 разных счетчика
  • 1Создание данных временных рядов в Python
  • 1Ошибка: «CUDNN STATUS NOT INITIALIZED» в сверточной сети на основе керас
  • 1Добавление целого числа в массив внутри узла
  • 0MySQL запрос: обновление внешнего ключа с уникальным идентификатором
  • 1Битовая манипуляция для файла ДНК Convert
  • 1Несоответствие типов с использованием обобщений Java и анонимного класса
  • 0Jquery If / Тогда в функции щелчка?
  • 0Почему мне нужно включить CORS в моем приложении Tomcat?
  • 1Нежелательная кнопка рисования на панели
  • 0Как разрешить запись только 1 значения с правилами безопасности Firebase
  • 0Выберите один следующий брат с помощью jquery
  • 1Как включить логирование в Android программно
  • 0Как установить переменные экземпляра в Camunda, используя PHP SDK?
  • 0Как обновить только div, а не всю страницу
  • 0Регистрация запросов, ответов и ошибок в Yii 1.1.15
  • 0Локальное хранилище HTML5, проверка правильности текстового поля
  • 1Как заменить ‘\’ на » в байтовом файле?
  • 0ng-show не работает при использовании с пользовательскими директивами
  • 0Только регулярное выражение числа и дефис (-), плюс (+), дефис и плюс необязательно
  • 1Модель долго тренируется
  • 1перехват кода es6, который не ясен
  • 1Обменяйте ключ и значение JSON
  • 0Директива AngularJS мутировать изолировать данные области
  • 0динамическая переменная повторения внутри повторения
  • 0Уведомления COM-интерфейса VDS (Virtual Disk Service) — обратный вызов (приемник), вызываемый только во время отмены регистрации (Unadvise)
  • 0Как написать фильтр в контроллере для конкретных значений
  • 0Как получить значение пользовательского атрибута с помощью jquery?
  • 1Как увидеть полную ошибку сборки муравья, которая обрезана
  • 1Глоб не печатает результаты
  • 1Удалите смежные дубликаты элементов из списка массивов в Java (с panache)
  • 0jQuery Mobile настройки Иконки для кнопок
  • 0Создать круговой выпадающий в div
  • 0проверить пустые или не значения в столбцах в R
  • 1Java ArrayList Class
  • 1Что убивает Android AsyncTask? [Дубликат]
  • 0параллельное программирование с openMP
  • 1Как обновить сущность в jpa?
  • 1Как изменить автоматически сгенерированное меню и поле «О программе» в Mac LAF на Java?
  • 0Target Один элемент с тем же именем класса, что и несколько элементов
  • 1Формат строки двойной с произвольной точностью, фиксированная десятичная позиция
  • 1ItemizedOverlay, кажется, рисует с «ломаной» проекцией
  • 0при изменении класса клика
  • 1Можно ли использовать GoogleFinanceAPI на Android?
  • 1Проблема Android MediaPlayer
  • 1Как создать пользовательскую кнопку в Android, которая анимируется с помощью анимации кадров
  • 0«Папка папки» в htaccess
  • 1Функция вызова ошибки в активной форме Yii2
  • 1Нужно ли устанавливать SQL Server, если я использую его в своем приложении?
  • 0MonoDevelop (Ubuntu) и MySql

Сообщество Overcoder

0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии

А вот еще интересные материалы:

  • Яшка сломя голову остановился исправьте ошибки
  • Ясность цели позволяет целеустремленно добиваться намеченного исправьте ошибки
  • Ясность цели позволяет целеустремленно добиваться намеченного где ошибка
  • Lineage 2 ошибка системы
  • Lineage 2 ошибка при запуске приложения 0xc0000142