Форум программистов, компьютерный форум, киберфорум
Программирование Android
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
Другие темы раздела
Программирование Android Абстрактная активити Здравствуйте. Хочу сделать активити для входа в приложение (ввод логина, пароля, проверка этого всего на сервере и т.д.). И хочу использовать ее в нескольких приложениях в качестве библиотеки, но в каждом рисовать свой layout. Попробовал в метод setContentView вместо ссылки на ресурс layout'a передать абстрактный метод, который возвращает этот id и в наследниках его переопределил. Далее добавил... https://www.cyberforum.ru/ android-dev/ thread1460164.html Подключиться к БД Программирование Android
Имеется MySQL база данных на сервере вида http://xxx.1gb.ru Логин , пароль для входа в PhpMyAdmin Каким образом к ней подключиться, чтобы можно было использовать как обычную SQLiteDataBase в коде? Ткните в ссылку какую нибудь или пример кода. Нужно очень срочно. Заранее большое спасибо!
Программирование Android Перерисовка layout здравствуйте,может кто сталкивался с такой проблемой имею такой xml <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:background="@android:color/black" android:visibility="visible" ... https://www.cyberforum.ru/ android-dev/ thread1459926.html Программирование Android Случайные неповторяющиеся числа Нужно сделать генератор случайных уникальных чисел. Сам дошел только до такого варианта, но он, понятно, не работает правильно - значения все равно повторяются. В конечном виде программы будет 137 чисел, если это имеет значение. final Random random = new Random(); str=random.nextInt(10); for(int i=0;i<count;i++){ if (str!=bil) break; ... https://www.cyberforum.ru/ android-dev/ thread1459914.html
Где найти примеры игр на Android? Программирование Android
Все доброго уважаемые! Вопрос не тривиальный. Изучаю Android, в пример решил сделать собственное приложение, а именно игру. Какую-нибудь простую головоломку с выбором уровней. Где можно найти шаблон головоломки на с выбором уровней? Посмотреть как это делается, а то третий день ломаю голову как это сделать правильно. Да и вообще где можно найти исходники Android приложений для изучения...
Программирование Android Сериализация и шифрование массива объектов Здравствуйте, пишу простое приложение на Android. Суть проблемы: имеется ArrayList с объектами моего класса, в классе 5 строковых полей, у меня не получается сделать так, чтобы этот список сохранялся в памяти и расшифровывался на основе заданного пароля. Подскажите пожалуйста, как это можно сделать. https://www.cyberforum.ru/ android-dev/ thread1459860.html
Программирование Android Google api authentication не работает https://www.cyberforum.ru/ android-dev/ thread1459809.html
Почему то перестала работать аутентификация. Кто что слышал? SpreadsheetService service = new SpreadsheetService("MySpreadsheetIntegration-v1"); // TODO: Authorize the service object for a specific user (see other sections) try { service.setUserCredentials(USERNAME, PASSWORD); } catch (AuthenticationException e) { // TODO Auto-generated catch block
Вывод в textView из БД Программирование Android
У меня есть БД public void onCreate(SQLiteDatabase db) { // создаем таблицу с полями db.execSQL("create table mystudent (" + "id integer primary key autoincrement," + "name text," + "email text" + ");"); } Я составил запрос чтоб вытащить все записи(name) с определенным (email) и получил Cursor
Программирование Android Игра PacMan на Android https://www.cyberforum.ru/ android-dev/ thread1459623.html
я делаю игру пэкмэн под андроид,это моя курсовая.. запоролся полностью с построением самой игры где нибудь есть исходники более менее вменяемые,которые можно поизучать?
Программирование Android Определение нажатия toggleButton https://www.cyberforum.ru/ android-dev/ thread1459517.html
У меня несколько toggleButton, как определять нажатие каждой? В этом методе. @Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { // TODO Auto-generated method stub }
Share для андроид Программирование Android
Всем здравствуйте! Ребята подскажите пожалуйста следующее: Есть мобильный сайт, когда открываю его на телефоне есть 3 ссылки: <a href="mailto:" class="nav-item mail-nav-icon">Mail !<em></em></a> - вызывает почтовые сервисы <a href="tel:+89519098777" class="nav-item call-nav-icon">Call!<em></em></a> - вызывает позвонить с помощью.... и есть ещё 3 ссылка: <a href="???:"...
Программирование Android Цикл в режим ожидания https://www.cyberforum.ru/ android-dev/ thread1459411.html
Доброго. Суть проблемы такая: есть цикл (от 1-го до 9-ти), внут
0 / 0 / 0
Регистрация: 03.04.2015
Сообщений: 60
28.05.2015, 10:38  [ТС] 0

Ошибки в logcat - Программирование Android - Ответ 7682079

28.05.2015, 10:38. Показов 1584. Ответов 5
Метки (Все метки)

Ответ

Хорошо. Вот:

MainActivity:
Java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
 import java.io.File;
import java.io.FilenameFilter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
 
import android.media.ExifInterface;
import android.os.AsyncTask;
import android.os.Bundle;
import android.os.Environment;
import android.app.Activity;
import android.app.Dialog;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.BaseAdapter;
import android.widget.Button;
import android.widget.GridView;
import android.widget.ImageView;
import android.widget.TextView;
 
public class MainActivity extends Activity {
    
    AsyncTaskLoadFiles myAsyncTaskLoadFiles;
    
    static final int ID_JPGDIALOG = 0;
    ImageView jpgdialigImage;
    TextView jpgdialigText;
    File jpgdialigFile;
    //have to match width and height of 
    //"@+id/image" in jpgdialog.xml
    final int DIALOG_IMAGE_WIDTH = 500;
    final int DIALOG_IMAGE_HEIGHT = 350;
 
    public class AsyncTaskLoadFiles extends AsyncTask<Void, String, Void> {
        
        File targetDirector;
        ImageAdapter myTaskAdapter;
 
        public AsyncTaskLoadFiles(ImageAdapter adapter) {
            myTaskAdapter = adapter;
        }
 
        @Override
        protected void onPreExecute() {
            String ExternalStorageDirectoryPath = Environment
                    .getExternalStorageDirectory().getAbsolutePath();
 
            String targetPath = ExternalStorageDirectoryPath + "/test/";
            targetDirector = new File(targetPath);
            myTaskAdapter.clear();
            
            super.onPreExecute();
        }
 
        @Override
        protected Void doInBackground(Void... params) {
            
            //open jpg only
            File[] files = targetDirector.listFiles(new FilenameFilter() {
                public boolean accept(File dir, String name)
                {
                    return (name.endsWith(".jpg")||name.endsWith(".JPG")); 
                }
            });
            //File[] files = targetDirector.listFiles();
            
            Arrays.sort(files);
            for (File file : files) {
                publishProgress(file.getAbsolutePath());
                if (isCancelled()) break;
            }
            return null;
        }
 
        @Override
        protected void onProgressUpdate(String... values) {
            myTaskAdapter.add(values[0]);
            super.onProgressUpdate(values);
        }
 
        @Override
        protected void onPostExecute(Void result) {
            myTaskAdapter.notifyDataSetChanged();
            super.onPostExecute(result);
        }
 
    }
 
    public class ImageAdapter extends BaseAdapter {
 
        private Context mContext;
        ArrayList<String> itemList = new ArrayList<String>();
 
        public ImageAdapter(Context c) {
            mContext = c;
        }
 
        void add(String path) {
            itemList.add(path);
        }
        
        void clear() {
            itemList.clear();
        }
        
        void remove(int index){
            itemList.remove(index);
        }
 
        @Override
        public int getCount() {
            return itemList.size();
        }
 
        @Override
        public Object getItem(int position) {
            // TODO Auto-generated method stub
            return itemList.get(position);
        }
 
        @Override
        public long getItemId(int position) {
            // TODO Auto-generated method stub
            return 0;
        }
 
        //getView load bitmap in AsyncTask
        @Override
        public View getView(final int position, View convertView, ViewGroup parent) {
            ViewHolder holder;
 
            ImageView imageView;
            if (convertView == null) { // if it's not recycled, initialize some
                                        // attributes
                imageView = new ImageView(mContext);
                imageView.setLayoutParams(new GridView.LayoutParams(220, 220));
                imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);
                imageView.setPadding(8, 8, 8, 8);
                
                convertView = imageView;
                
                holder = new ViewHolder();
                holder.image = imageView;
                holder.position = position;
                convertView.setTag(holder);
            } else {
                //imageView = (ImageView) convertView;
                holder = (ViewHolder) convertView.getTag();
                ((ImageView)convertView).setImageBitmap(null);
            }
            
            //Bitmap bm = decodeSampledBitmapFromUri(itemList.get(position), 220, 220);
            // Using an AsyncTask to load the slow images in a background thread
            new AsyncTask<ViewHolder, Void, Bitmap>() {
                private ViewHolder v;
 
                @Override
                protected Bitmap doInBackground(ViewHolder... params) {
                    
                    Bitmap bm = null;
                    
                    boolean haveThumbNail = false;
                    
                    try {
                        ExifInterface exifInterface = 
                            new ExifInterface(itemList.get(position));
                        if(exifInterface.hasThumbnail()){
                            byte[] thumbnail = exifInterface.getThumbnail();
                            bm = BitmapFactory.decodeByteArray(thumbnail, 0, thumbnail.length);
                        }
                        haveThumbNail = true;
                    } catch (IOException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                    
                    if(!haveThumbNail){
                        bm = decodeSampledBitmapFromUri(
                                itemList.get(position), 220, 220);
                    }
 
                    v = params[0];
                    return bm;
                }
 
                @Override
                protected void onPostExecute(Bitmap result) {
                    super.onPostExecute(result);
                    //Not work for me!
                    /*
                    if (v.position == position) {
                        // If this item hasn't been recycled already, 
                        // show the image
                        v.image.setImageBitmap(result);
                    }
                    */
 
                    v.image.setImageBitmap(result);
 
                }
            }.execute(holder);
 
            //imageView.setImageBitmap(bm);
            //return imageView;
            return convertView;
        }
 
        /*
        public Bitmap decodeSampledBitmapFromUri(String path, int reqWidth,
                int reqHeight) {
 
            Bitmap bm = null;
            // First decode with inJustDecodeBounds=true to check dimensions
            final BitmapFactory.Options options = new BitmapFactory.Options();
            options.inJustDecodeBounds = true;
            BitmapFactory.decodeFile(path, options);
 
            // Calculate inSampleSize
            options.inSampleSize = calculateInSampleSize(options, reqWidth,
                    reqHeight);
 
            // Decode bitmap with inSampleSize set
            options.inJustDecodeBounds = false;
            bm = BitmapFactory.decodeFile(path, options);
 
            return bm;
        }
 
        public int calculateInSampleSize(
 
        BitmapFactory.Options options, int reqWidth, int reqHeight) {
            // Raw height and width of image
            final int height = options.outHeight;
            final int width = options.outWidth;
            int inSampleSize = 1;
 
            if (height > reqHeight || width > reqWidth) {
                if (width > height) {
                    inSampleSize = Math.round((float) height
                            / (float) reqHeight);
                } else {
                    inSampleSize = Math.round((float) width / (float) reqWidth);
                }
            }
 
            return inSampleSize;
        }
        */
        
        class ViewHolder {
            ImageView image;
            int position;
        }
 
    }
 
    ImageAdapter myImageAdapter;
 
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
 
        final GridView gridview = (GridView) findViewById(R.id.gridview);
        myImageAdapter = new ImageAdapter(this);
        gridview.setAdapter(myImageAdapter);
 
        myAsyncTaskLoadFiles = new AsyncTaskLoadFiles(myImageAdapter);
        myAsyncTaskLoadFiles.execute();
 
        gridview.setOnItemClickListener(myOnItemClickListener);
        
        Button buttonReload = (Button)findViewById(R.id.reload);
        buttonReload.setOnClickListener(new OnClickListener(){
 
            @Override
            public void onClick(View arg0) {
                
                //Cancel the previous running task, if exist.
                myAsyncTaskLoadFiles.cancel(true);
                
                //new another ImageAdapter, to prevent the adapter have
                //mixed files
                myImageAdapter = new ImageAdapter(MainActivity.this);
                gridview.setAdapter(myImageAdapter);
                myAsyncTaskLoadFiles = new AsyncTaskLoadFiles(myImageAdapter);
                myAsyncTaskLoadFiles.execute();
            }});
 
    }
 
    OnItemClickListener myOnItemClickListener = new OnItemClickListener() {
 
        @Override
        public void onItemClick(AdapterView<?> parent, View view, int position,
                long id) {
            String path = (String) parent.getItemAtPosition(position);
 
            //Open dialog to show jpg
            jpgdialigFile = new File(path);
            
            showDialog(ID_JPGDIALOG);
 
        }
    };
 
    @Override
    @Deprecated
    protected Dialog onCreateDialog(int id) {
        final Dialog jpgDialog = new Dialog(this);
        switch(id){
        case ID_JPGDIALOG:
 
            jpgDialog.setContentView(R.layout.jpgdialog);
            jpgdialigImage = (ImageView)jpgDialog.findViewById(R.id.image);
            jpgdialigText = (TextView)jpgDialog.findViewById(R.id.textpath);
         
            Button okDialogButton = (Button)jpgDialog.findViewById(R.id.okdialogbutton);
            okDialogButton.setOnClickListener(new OnClickListener(){
 
                @Override
                public void onClick(View v) {
                    jpgDialog.dismiss();
                }});
            break;
            
        default:
            break;  
        }
        
        return jpgDialog;
    }
 
    @Override
    @Deprecated
    protected void onPrepareDialog(int id, Dialog dialog) {
        switch(id){
        case ID_JPGDIALOG:
            jpgdialigText.setText(jpgdialigFile.getPath());
            //Bitmap bm = BitmapFactory.decodeFile(jpgdialigFile.getPath());
            Bitmap bm = decodeSampledBitmapFromUri(jpgdialigFile.getPath(), 
                DIALOG_IMAGE_WIDTH, DIALOG_IMAGE_HEIGHT);
            jpgdialigImage.setImageBitmap(bm);
            
            break;
            
        default:
            break;
         }
    }
    
    private Bitmap decodeSampledBitmapFromUri(
        String path, int reqWidth, int reqHeight) {
        
        Bitmap bm = null;
        // First decode with inJustDecodeBounds=true to check dimensions
        final BitmapFactory.Options options = new BitmapFactory.Options();
        options.inJustDecodeBounds = true;
        BitmapFactory.decodeFile(path, options);
 
        // Calculate inSampleSize
        options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
 
        // Decode bitmap with inSampleSize set
        options.inJustDecodeBounds = false;
        bm = BitmapFactory.decodeFile(path, options);
 
        return bm;  
    }
    
    public int calculateInSampleSize(
        BitmapFactory.Options options, int reqWidth, int reqHeight) {
        
        // Raw height and width of image
        final int height = options.outHeight;
        final int width = options.outWidth;
        int inSampleSize = 1;
            
        if (height > reqHeight || width > reqWidth) {
            if (width > height) {
                inSampleSize = Math.round((float) height/(float) reqHeight);        
            } else {
                inSampleSize = Math.round((float) width / (float) reqWidth);        
            }       
        }
        
        return inSampleSize;    
    }
 
}

Activity_main
XML
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:orientation="vertical">
 
    <Button
        android:id="@+id/reload"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Reload"/>
    <GridView
        android:id="@+id/gridview"
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent"
        android:columnWidth="220dp"
        android:numColumns="auto_fit"
        android:verticalSpacing="10dp"
        android:horizontalSpacing="10dp"
        android:stretchMode="columnWidth"
        android:gravity="center"/>
 
</LinearLayout>
Jpgdialog

XML
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layout_root"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:paddingLeft="10dip"
    android:paddingRight="10dip" >
 
    <TextView
        android:id="@+id/textpath"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
    
    <ImageView
        android:id="@+id/image"
        android:layout_width="500dp"
        android:layout_height="350dp" />
 
    <Button
        android:id="@+id/okdialogbutton"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="OK" />
 
</LinearLayout>
Добавлено через 3 минуты
Manifest

XML
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.androidgridview"
    android:versionCode="1"
    android:versionName="1.0" >
 
    <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="15" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
 
    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
 
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
 
</manifest>


Вернуться к обсуждению:
Ошибки в logcat Программирование Android
0
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
28.05.2015, 10:38
Готовые ответы и решения:

Ошибки LogCat
Ребят прошу у вас помощи, все никак не могу разобраться с ошибками, при запуске приложения сразу...

LogCat
Здравствуйте. Подскажите как правильно читать лог/LogCat и определять где находится ошибка ? Вот...

logcat
Уважаемые пользователи, подскажите как просмотреть логи в приложении, если даже эмулятор не...

Вывод LogCat
Вопрос заключается в следующем: пишу одно приложение, при этом использую опенгл. Логкет выдает...

5
28.05.2015, 10:38
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
28.05.2015, 10:38
Помогаю со студенческими работами здесь

Не работает logcat
Добрый день. Когда-то давно (год назад) logcat работал на устаревшей версии Android Studio....

Logcat на устройстве
Тестирую приложение, парсит сайт. На эмуляторе все проходит хорошо, а на телефоне иногда крашится в...

Таймстампы в Logcat
Откуда берет время Logcat в Android studio? На телефоне подключенном к компу - стоит дата...

LogCat Eclipse
Не появляются логи LogCat в Eclipse. Если использовать adb logcat через командную строку там все...

Альтернатива LogCat
Работаю в студии, до этого был эклипс... LogCat использую по полной, но он меня не устраивает...

Android Studio и logcat
Добрый день! После завершения программы в logcat продолжает сыпаться сообщения: I/SurfaceFlinger:...

0
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru