• Android开发常见错误及技巧


    1、无法使用网络:Permission denied(maybe missing internet permission)

    在AndroidMainifest.xml中增加允许使用网络选项(在</application>结束标签之后>):

    <uses-permission Android:name="android.permission.INTERNET" />

    2、找不到activity类: android.content.ActivityNotFoundException: Unable to find explicit activity class {xxxx}

    在AndroidMainifest.xml中增加activity的申明,如:

     <activity android:name=".xxxActivity" >

            </activity>

    3、为什么我找不到 startSubActivity 方法?

    现在,请使用 startActivityForResult 方法来代替旧的startSubActivity方法。

    4、无法加载xml中的view,报 java.lang.NullPointerException 异常

    忘记加载activity的layout文件:

    setContentView(R.layout.main);

    5、Unparsed aapt error(s)! Check the console for output

    但是你的控制台上找不到错误或者 看不懂错误的时候,点 Project--------->clean..就会没问题

     http://hovertree.com/menu/android/

    6、requestCode和resultCode的区别

    在使用startActivityForResult()和onActivityResult()时,会分别用到requestCode和resultCode,有时候极容易将2个参数混淆起来。

    requestCode 和 resultCode 混淆说明错的。
    startActivityForResult(Intent intent, Int requestCode)
    intent 传给B的,不解释,看不懂你还是玩玩手机算了,别想开发的事情了
    requestCode >=0就好,随便用于在onActivityResult()区别哪个子模块回传的数据,如果还有C.java ,D甚至E子模块的话,每个区分开不同的requestCode就好。
    setResut(int resultCode, Intent intent)
    resultCode 如果B子模块可能有几种不同的结果返回,可以用这个参数予以识别区分。这里还有个特殊的 RESULT_OK 值,没有特殊情况用它就好了,sdk有说明的,呵。
    intent 继续不解释,传回给A的onActivityResult()
    onActivityResult(int requestCode, int resultCode, Intent intent)
    这里三个都不用解释了,与上文对应的东西。如果不对requestCode和resultCode 加以识别区分的话,只要有其他activity setResult到了A onActivityResult()会无差别处理。

    7、无法下载文件到SD卡中

    在manifest文件中加上:<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

    8、让控件在父容器中居中:

    android:layout_gravity="center_vertical"

    9、控件两端对齐:

    如下代码让位于同一行的两个控件分别左对齐和右对齐:

    <RelativeLayout

        xmlns:Android="http://schemas.android.com/apk/res/android"

        Android:background="@drawable/top"

        Android:layout_width="fill_parent"

        Android:layout_height="wrap_content"

        ><ImageView

            Android:id="@+file_browser/imgRefresh"

            Android:layout_width="wrap_content"

            Android:layout_height="wrap_content"

            Android:layout_marginLeft="10px"

            Android:src="@drawable/refresh"

            Android:layout_centerVertical="true"

            >

        </ImageView>

        <ImageView

            Android:id="@+file_browser/imgCheck"

            Android:layout_alignParentRight="true"

            Android:layout_width="wrap_content"

            Android:layout_height="wrap_content"

            Android:layout_marginRight="10px"

            Android:src="@drawable/close"

            Android:layout_centerVertical="true"

            >

        </ImageView>

    </RelativeLayout>

    10、android软键盘控件往上挤的解决办法:

      键盘区域外才是屏幕的边缘,定义布局文件时使用:android:gravity="bottom"的话就会被挤到上部!

      解决办法:

      在此工程的androidMainfest.xml文件中对应的Activity中写入 android:windowSoftInputMode="adjustPan"

      或者在配置文件中把布局文件的大小写死!

    11、在布局中使用scrollview:

    把原来的布局用<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:scrollbars="none"></ScrollView>括起来即可实现视图的滚动。

    12、全局变量Application Context

    创建一个属于你自己的android.app.Application的子类,然后在manifest中申明一下这个类,这是android就为此建立一个全局可用的实例,你可以在其他任何地方使用Context.getApplicationContext()方法获取这个实例,进而获取其中的状态(变量)。 下面看一下Demo:

    class MyApp extends Application {

    private String myState; 

    public String getState(){ 

    return myState; 

    public void setState(String s){ 

    myState = s; 

    class Blah extends Activity { 

    @Override 

    public void onCreate(Bundle b){ 

    ... 

    MyApp appState = ((MyApp)getApplicationContext()); 

    String state = appState.getState(); 

    ... 

    这个效果就是使用静态变量是一样的,但是其更符合android的架构体系。 使用这种方法的话需要在AndroidManifest.xml中配置一下:

    <application android:name=".MyApp" 

           android:icon="@drawable/icon" 

           android:label="@string/app_name">

    13、Android模拟器打电话发短信

    GPhone的模拟器有个特有的号码:15555218135,这个就类似我们实体手机的SIM卡号码啦。要实现拨号,用手机?当然不行!

    更简单,三步:

    1.打开终端

    2.连接: telnet localhost 5554(5554是你打开模拟器后上面显示的数字)

    3.命令:gsm call 15555218135

    look!是不是模拟器上显示来电了?接听/挂断和实体手机一样。

    发短信也一样简单,重复上面1,2两步,第三部命令改一下:

    sms send 15555218135 Hello,this is a Message.

    14、ListView不能触发OnItemClickListener监听器

    检查行所绑定的行布局文件中是否使用了EditText,如果有的话将EditText的focusable 属性设为false。

    推荐:http://www.cnblogs.com/roucheng/p/sdka.html

  • 相关阅读:
    Windows永久修改pip安装源
    MySQL 超键 候选键 主键 外键是什么
    scrapy中间件
    crawlspider
    scrapy
    MongoDB 命令
    如何反扒
    表前缀sw_时
    自增序号,而且默认变量就是$i,也就是说在你的volist标签之内,可以直接使用$i
    html,if标签使用
  • 原文地址:https://www.cnblogs.com/roucheng/p/androidjiqiao.html
Copyright © 2020-2023  润新知