小编bre*_*ine的帖子

Android Butterknife - 片段绑定

我第一次使用Butterknife,但一定是错的.我有一个片段,Listview和TextView只是为了测试,但Butterknife不会绑定我的变量:

public class MyFragment extends Fragment {

    @Bind(R.id.resultListView) ListView resultList;

    @Bind(R.id.textView1) TextView test;

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fragment_my, container, false);
        ButterKnife.bind(this, view);
        System.out.println(resultList); //null
        System.out.println(view.findViewById(R.id.resultListView)); //works
        System.out.println(test); //null
        System.out.println(view.findViewById(R.id.textView1)); //works
        return view;
    }

}
Run Code Online (Sandbox Code Playgroud)

没有例外或任何事情.手动绑定有效,所以我的意见必须在那里.

android butterknife

47
推荐指数
3
解决办法
4万
查看次数

在NestedScrollView中,RecycleView窃取焦点

当我将RecyclerView放在嵌套的scrollview中时,屏幕总是跳到RecyclerView的顶部而不是页面的顶部.这是一个简单的例子.

layout xml:

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:tools="http://schemas.android.com/tools"
    xmlns:android="http://schemas.android.com/apk/res/android">
<android.support.v4.widget.NestedScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="350dp"
            android:background="@android:color/holo_blue_dark"/>
        <android.support.v7.widget.RecyclerView
            android:id="@+id/recycleView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
    </LinearLayout>
</android.support.v4.widget.NestedScrollView>
</layout>
Run Code Online (Sandbox Code Playgroud)

虚拟适配器的活动:

public class RecycleViewTestActivity extends AppCompatActivity {

public static class ExampleAdapter extends RecyclerView.Adapter<ExampleViewHolder> {

    private Context context;

    public ExampleAdapter(Context context) {
        this.context = context;
    }

    @Override
    public ExampleViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        TextView view = new TextView(context);
        view.setText("Test");
        return new ExampleViewHolder(view);
    }

    @Override
    public void onBindViewHolder(ExampleViewHolder holder, int position) {

    } …
Run Code Online (Sandbox Code Playgroud)

android android-layout android-recyclerview

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

为什么gradle 2.0这么慢?

我正在使用Gradle 2.0.0和Android Studio,一个空项目需要2分钟才能构建.它还在Windows 8.1下创建100%的CPU使用率.

很烦人.更令人讨厌的是,正确的项目可能需要4-5分钟才能构建,并且它会减慢一切.

什么可能导致这个?

gradle android-studio android-gradle-plugin

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

每个线程都有堆栈空间吗?

如果我理解正确,堆栈是为了本地原始和对堆中对象的引用.那么如果你有多个线程会发生什么?

它们是否同时共享相同的堆栈空间(但不同的区域),或者JRE切换上下文并在线程之间切换时加载 - 卸载堆栈内容?

或者JRE是否为每个线程分配单独的堆栈?

java stack java-threads

10
推荐指数
2
解决办法
4283
查看次数

Spring Oauth2 - 自定义异常处理程序

在Spring Security基于Oauth2的身份验证中,当客户端发送需要刷新的访问令牌时,DefaultTokenServices类会抛出InvalidTokenException(参见第235行):

https://github.com/spring-projects/spring-security-oauth/blob/master/spring-security-oauth2/src/main/java/org/springframework/security/oauth2/provider/token/DefaultTokenServices.java

发生这种情况时的输出是这样的:

{"error":"invalid_token","error_description":"Invalid access token: a0cb5ab9-7281-46bd-a9a2-796a04a906c9"
}
Run Code Online (Sandbox Code Playgroud)

我想改变这个输出,但我迷路了.其他一些答案建议设置一个自定义的exceptionRenderer,但这也不起作用,我的自定义异常渲染器在这些情况下永远不会被调用.

还有一种称为异常翻译器的东西,但无论如何它们都没有被称为.

我的春季配置的一部分:

<bean id="clientAuthenticationEntryPoint"
      class="org.springframework.security.oauth2.provider.error.OAuth2AuthenticationEntryPoint">
    <property name="typeName" value="Basic"/>
    <property name="exceptionRenderer" ref="myExceptionRenderer" />
</bean>


<bean id="oauthAuthenticationEntryPoint"
      class="org.springframework.security.oauth2.provider.error.OAuth2AuthenticationEntryPoint">
      <property name="exceptionRenderer" ref="myExceptionRenderer" />
      <property name="exceptionTranslator" ref="listyOauthExceptionTranslator" />
</bean>

<bean id="oauthAccessDeniedHandler" class="org.springframework.security.oauth2.provider.error.OAuth2AccessDeniedHandler" >
 <property name="exceptionRenderer" ref="myExceptionRenderer" />
 <property name="exceptionTranslator" ref="myExceptionTranslator" />
</bean>

<bean id="myExceptionRenderer" class="com.example.exceptions.MyOauth2ExceptionRenderer" />

<bean id="myExceptionTranslator" class="com.example.exceptions.MyOauth2ExceptionTranslator" />
Run Code Online (Sandbox Code Playgroud)

异常渲染器:

public class MyExceptionRenderer implements OAuth2ExceptionRenderer {

@Override
public void handleHttpEntityResponse(HttpEntity<?> responseEntity, ServletWebRequest webRequest) throws Exception {
    System.out.println("Thrown exception");
} …
Run Code Online (Sandbox Code Playgroud)

java spring oauth spring-security

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

活动结束后,Butterknife会泄漏参考资料吗?

我注意到即使活动已经完成,Butterknife仍然会参考它.我甚至在活动的onDestroy上明确地调用了Butterknife.unbind,但这些ViewBinder仍然坚持它.

这是来自堆转储的图片:

在此输入图像描述

有什么想法导致这个?

android memory-leaks butterknife

8
推荐指数
0
解决办法
610
查看次数

RxJava订阅阻止可观察

我想要实现以下目标:

String result = myObservable.toBlocking().first();
Run Code Online (Sandbox Code Playgroud)

即它就像一个常规函数调用。但是,这永远不会发生,因为您需要订阅它,我不知道该怎么做。如果我订阅它,结果将在另一个范围内,并且代码非常丑陋,因为无论如何我只能像常规可观察到的那样得到结果,因此将其变成阻塞可观察的是没有意义的。

rx-java

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

Android APK 与测试 APK?

我看到 Android 在输出文件夹中创建了一个“正常”和一个 androidTest APK?

IE

  • app-dev-debug.apk
  • app-dev-debug-androidTest.apk

例如,如果我想通过调试桥在设备上运行测试,是否需要安装这两个?

谢谢

android android-testing

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

iTunes Connect 帐户/角色与 Apple 开发者帐户之间的区别

我对苹果如何处理这个问题感到非常困惑。这是我的情况:

我是一名独立 IOS 开发者,拥有付费 Apple 开发者帐户。我可以访问 iTunes 连接并上传应用程序,效果很好。我在 XCode 中使用“IOS Developer”代码签名身份选择“自动管理签名”。

所以这有效。

我工作的一个组织邀请我加入 iTunes connect。所以我也可以在上面为他们创建应用程序。现在我的账户上有两件事。

我如何为他们的帐户上传应用程序?我似乎无法转移现有的应用程序,而且我似乎无法使用与其个人资料/帐户/其他内容相匹配的身份对其进行签名。

xcode code-signing ios apple-developer app-store-connect

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

Java可选和orElse

我是Java可选对象的新手,但是我看到此代码是由另一个开发人员编写的,但我没有得到:

String t = null;
Optional.ofNullable("notnull")
    .orElse(
        Optional.ofNullable(t).orElseThrow(() -> new Exception("MyException"))
    );
Run Code Online (Sandbox Code Playgroud)

为什么这段代码会引发异常?为什么甚至转到“ orElse”分支?

这是因为执行顺序有些奇怪吗?因此,在评估orElse分支之前未设置第一个可选的值吗?

java optional

6
推荐指数
2
解决办法
144
查看次数