小编Nik*_*hil的帖子

如何在android平台上调用电子邮件应用程序

有一个意图" send an email."在我们的应用程序需要发送邮件,如何调用该意图

android

4
推荐指数
1
解决办法
3365
查看次数

适用于较大图像的Android Image Getter

我已经使用了所有与标准网络相关的代码来获取图像45KB to 75KB但是所有这些代码都失败了这些方法适用于大约3-5KB图像大小的文件.我如何实现下载图像,45 - 75KB以便在我的网络操作中在Android上的ImageView上显示它们我使用过的东西

final URL url = new URL(urlString);

final URLConnection conn = url.openConnection();
HttpURLConnection httpConn = (HttpURLConnection) conn;

httpConn.setAllowUserInteraction(true);

httpConn.setInstanceFollowRedirects(true);

httpConn.setRequestMethod("GET");

httpConn.connect();
Run Code Online (Sandbox Code Playgroud)

我使用的第二个选项是::

DefaultHttpClient httpClient = new DefaultHttpClient();

HttpGet getRequest = new HttpGet(urlString);

HttpResponse response = httpClient.execute(getRequest);
Run Code Online (Sandbox Code Playgroud)

为什么此代码适用于较小尺寸的图像而不适用于较大尺寸的图像.?

android thumbnails

2
推荐指数
1
解决办法
6857
查看次数

EditText默认选择?

每当我在我的Android应用程序中有一个EditText字段时,一旦活动开始(though the keyboard doesn't pop up),它就会以闪烁的光标突出显示以进行输入.我怎么能禁用它?

java android android-edittext

2
推荐指数
1
解决办法
3173
查看次数

Android:无法从View转换为Button

我刚刚开始使用Android,但似乎遇到了一个我根本无法找到答案的问题.我在这一行收到错误"无法从视图转换为按钮":

Button myButton = (Button)findViewById(R.id.my_button);
Run Code Online (Sandbox Code Playgroud)

我已经尝试了许多不同的东西来实现它,我已经搜索了答案,但由于某种原因它只是拒绝正常工作.如果有人能指出我正确的方向,那将是非常感激的.

预先感谢.

java android casting view button

2
推荐指数
2
解决办法
1万
查看次数

如何更改用于指示TabHost上已选中选项卡的颜色?

在android上TabHost layout,当用户选择一个标签时,标签的颜色会暂时改变.如何禁用此颜色更改,或指定选项卡更改为的颜色?

android android-tabhost

2
推荐指数
1
解决办法
6827
查看次数

getDrawingCache()方法有什么用?

我不知道如何使用getDrawingCache()method.please给我任何一个例子.请解释我的方法,它的用途和优点.

android

2
推荐指数
1
解决办法
9265
查看次数

如何在Android中的Relativelayout内部放置一个Linearlayout

我需要在relativelayout的底部放置一个线性布局,这是xml中最顶层的父布局.我怎样才能做到这一点?

请帮我.

 <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background"
android:orientation="vertical" >
<RelativeLayout .......   <<--- this should occupy total available space
</Relativelayout
 <Linearlayout .......     <<-- this should place at bottom always with height 50dp
 </LineaLayout>
 </ReltiveLayout>
Run Code Online (Sandbox Code Playgroud)

android relativelayout android-layout android-linearlayout

2
推荐指数
1
解决办法
1万
查看次数

结合两个意图标志

我有一个我需要设置它的意图,两个标志:

FLAG_ACTIVITY_SINGLE_TOP - >因为我想保留当前活动的实例,以防它已经集中注意力.

FLAG_ACTIVITY_NEW_TASK - >因为我在其活动之外启动了意图(contexnt.startactivity(..))

问题是我不能它们两者结合起来 ..任何其他解决方案?

这是我的例外:

06-30 09:12:48.577: ERROR/AndroidRuntime(2460): android.util.AndroidRuntimeException: Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag.

这真的是你想要的吗?

谢谢,

射线.

android android-activity

1
推荐指数
1
解决办法
3465
查看次数

如何从SQLite中删除特定记录?

我需要从sqlite中删除特定记录.但是下面的代码无法删除它.
请给我一些提示.

public void delete(String Id)
{
    try {

        db.delete(MySQLiteHelper.TABLE_NAME, "Id=?",
              new String[] { Id.toString() });
    }
    catch(Exception e) { ... }

}
Run Code Online (Sandbox Code Playgroud)

sql sqlite android

1
推荐指数
1
解决办法
7766
查看次数

Spring MVC jsp映射

你好,我是Spring的新手,并坚持我的jsp映射 - 我的页面给出了404 - 找不到页面的错误.

我的项目结构是



    WebContent
     + META-INF
     - WEB-INF
      - jsp
        index.jsp
        login.jsp
      +lib
      springMVC-servlet.xml
      web.xml

Run Code Online (Sandbox Code Playgroud)

在web.xml




     <display-name>spring</display-name>
        <servlet>
             <servlet-name>springMVC</servlet-name>
             <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
            <load-on-startup>1</load-on-startup>  
        </servlet>

     <servlet-mapping>
      <servlet-name>springMVC</servlet-name>
      <url-pattern>/</url-pattern>
     </servlet-mapping>
     <welcome-file-list> 
      <welcome-file>index.jsp</welcome-file> 
    </welcome-file-list>
    </web-app>
    
Run Code Online (Sandbox Code Playgroud)

用SpringMVC-servlet.xml中



    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xmlns:context="http://www.springframework.org/schema/context"
     xmlns:mvc="http://www.springframework.org/schema/mvc"
     xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
      http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
      http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd">

        <context:component-scan
            base-package="web.controller" />

     <!-- Enabling Spring MVC configuration through annotations -->
     <mvc:annotation-driven />

        <bean id="viewResolver"
            class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <property name="prefix" value="/WEB-INF/jsp/" />
            <property name="suffix" value=".jsp" />
        </bean …
Run Code Online (Sandbox Code Playgroud)

spring jsp http-status-code-404

1
推荐指数
1
解决办法
1万
查看次数