大家好,又见面了,我是全栈君,今天给大家准备了Idea注册码。
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个参数混淆起来。
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
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/120481.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...