美文网首页
21.工作中积累的问题

21.工作中积累的问题

作者: Jsonzhang | 来源:发表于2017-05-17 15:10 被阅读13次

1. 用Android Studio怎样获取应用的签名(SHA1)?

在集成百度或是高德地图时,都需要应用的签名即SHA1证书,在Eclipse中很容易找到这个值,但是在Android Studio中却需要我们自己动手获取。

Android Studio中的Terminal里面输入:
"D:\software\path\JDK\jre\bin\keytool.exe" -list -v -keystore "C:\Users\hexun.android\debug.keystore"
路径是我电脑的路径,对应的改成你自己的路径

Paste_Image.png

输入正确后,会提示输入密匙库口令,默认是android,密码输入时不显示,但要正确输入,如果是自己更改过密码就输入自己的密码,输入后展示下面数据:

Paste_Image.png

2.ScrollView中嵌套ListView时,ListView显示不全,以及滑动冲突的解决?

  • 当ScrollView中的ListView的高度为wrap_content时,ListView不能完全显示,往往显示一个item。
    解决方法:调用此方法,动态测量listview的高度,并设置高度
public void setListViewHeightBasedOnChildren(ListView listView) {
        ListAdapter listAdapter = listView.getAdapter();
        if (listAdapter == null) {
            return;
        }

        int totalHeight = 0;
        for (int i = 0; i < listAdapter.getCount(); i++) {
            View listItem = listAdapter.getView(i, null, listView);
            listItem.measure(0, 0);
            totalHeight += listItem.getMeasuredHeight();
        }

        ViewGroup.LayoutParams params = listView.getLayoutParams();
        params.height = totalHeight
                + (listView.getDividerHeight() * (listAdapter.getCount() - 1));
        listView.setLayoutParams(params);
    }

注意:

  • 调用此方法listview的item跟布局一定要是LinearLayout

  • 调用这个方法需要在适配器数据加载更新之后,mAdapter.notifyDataSetChanged(); 这个方法之后调用setListViewHeightBasedOnChildren

  • 如果ScrollView中ListView的高度固定,但是此时ListView与ScrollView的滑动冲突,导致ListView不能滑动。
    解决办法:自定义一个ScrollView,重写它的onInterceptTouchEvent()方法,通过获取listview的位置和手势时间的点击位置,如果手势事件的位置在listview的位置,让onInterceptTouchEvent返回false,即不拦截事件,让listview接受滑动事件。

public class ListScrollView extends ScrollView {

    private ListView listView;

    public void setListView(ListView listView){
        this.listView = listView;
    }

    public ListView getListView(){
        return listView;
    }

    public ListScrollView(Context context) {
        this(context,null);
    }

    public ListScrollView(Context context, AttributeSet attrs) {
        this(context, attrs,0);
    }

    public ListScrollView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    public boolean onInterceptTouchEvent(MotionEvent ev) {
        if (listView!=null && checkArea(listView,ev)){
            return false;
        }
        return super.onInterceptTouchEvent(ev);
    }

    private boolean checkArea(View v, MotionEvent event){
        float x = event.getRawX();
        float y = event.getRawY();
        int[] locate = new int[2];
        v.getLocationOnScreen(locate);
        int l = locate[0];
        int r = l + v.getWidth();
        int t = locate[1];
        int b = t + v.getHeight();
        if (l < x && x < r && t < y && y < b) {
            return true;
        }
        return false;
    }
}
  • 比如scrollview最上面的空间是个textview,有时进入后scrollview会自动上滑一块,到时textview被遮挡。
    解决办法:
    获取到最顶端的控件,比如是个textview即tv,然后设置这几个方法:
tv.setFocusable(true);
tv.setFocusableInTouchMode(true);
tv.requestFocus();

3.设置Android studio中局部变量的颜色值

Paste_Image.png

4. Mac中设置adb环境变量

在mac系统下打开终端,输入:
touch .bash_profile
open -e .bash_profile
这样会弹出一个“.bash_profile”文件.
在弹出的文件中,写入platform-tools路径:
export PATH=${PATH}:/Users/zhangshuliang/Library/Android/sdk/platform-tools
关闭文件,并执行命令:source .bash_profile,保存文件的更改。

5.Dialog的下拉和上弹动画

 private void showBottomDialog() {
        View contentView = View.inflate(this, R.layout.dialog_bottom, null);
        TextView tvTakePhone = (TextView) contentView.findViewById(R.id.tv_take_phone);
        TextView tvSelctGallery = (TextView) contentView.findViewById(R.id.tv_select_gallery);
        TextView cancle = (TextView) contentView.findViewById(R.id.tv_cancle);
        tvTakePhone.setOnClickListener(this);
        tvSelctGallery.setOnClickListener(this);
        cancle.setOnClickListener(this);
        dialog = new Dialog(this, R.style.BottomDialog);
        dialog.setContentView(contentView);
        dialog.getWindow().setLayout(WindowManager.LayoutParams.MATCH_PARENT, WindowManager.LayoutParams.WRAP_CONTENT);
        dialog.getWindow().setGravity(Gravity.TOP | Gravity.CENTER_HORIZONTAL);
        dialog.setCanceledOnTouchOutside(true);
        dialog.show();
}
<style name="BottomDialog" parent="Base.Theme.AppCompat.Light.Dialog">
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:windowAnimationStyle">@style/DialogAnimation</item>
</style>
<style name="DialogAnimation" parent="@android:style/Animation.Dialog">
        <item name="android:windowEnterAnimation">@anim/bottom_dialog_enter</item>
        <item name="android:windowExitAnimation">@anim/bottom_dialog_out</item>
</style>
//从顶部下拉
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="500"
    android:interpolator="@android:anim/linear_interpolator"
    android:fromYDelta="-100%p"
    android:toYDelta="0">
</translate>
//顶部上移隐藏
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="500"
    android:fromYDelta="0"
    android:interpolator="@android:anim/linear_interpolator"
    android:toYDelta="-100%p">
</translate>
//底部弹起
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="300"
    android:interpolator="@android:anim/accelerate_interpolator"
    android:fromYDelta="100%"
    android:toYDelta="0%">
</translate>
//底部隐藏
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="300"
    android:fromYDelta="0%"
    android:interpolator="@android:anim/accelerate_interpolator" 
    android:toYDelta="100%">
</translate>

相关文章

  • 21.工作中积累的问题

    1. 用Android Studio怎样获取应用的签名(SHA1)? 在集成百度或是高德地图时,都需要应用的签名即...

  • 文字复盘,放大想法的灵光——读《让写作成为自我精进的武器》之二

    无论是写作还是解决工作中的问题都离不开平时的积累。积累出了来自阅读笔记、工作日志,更重要的是经常反思、复盘。如果笔...

  • 我们总是在工作中不断成长

    工作真的是修炼心灵的道场。 工作中我们总会遇到各种各样的事情,去解决各种各样的问题。在直面问题、解决问题中积累工作...

  • 《老汪谈职场》

    1.学会在工作中学习 在工作中学习不断反思,不断总结,不断向别人讨教,这样你会积累很多实际处理问题的办法,而且慢慢...

  • 知识

    多积累知识,才能让我们对生活工作中的各种问题能正确面对,给我们一个幸福的人生。

  • 【问题积累】

    1.多重共线性 @2020-2-15 问题来源:pandas.get_dummies函数中的drop_firs...

  • 心学之我悟:答案

    心学之我悟:21.所有问题的答案,都在我们心中,不在我们心外。

  • 2019-04-17:每日语文积累

    已收藏至文集:语文素养积累 出自《论语》的成语21~25 21.道不同,不相为谋 解释:走着不同道路的人,就不能在...

  • 前端-工作中积累的方法

    1.想将对象冻结,应该使用Object.freeze方法。 const foo =Object.freeze({}...

  • 生活压力学习作业

    21.生活压力与应激管理模块(第三讲)作业 在应对应激中你积累过哪些经验,你认为哪些应激的方法,你可以做到? ...

网友评论

      本文标题:21.工作中积累的问题

      本文链接:https://www.haomeiwen.com/subject/tyudxxtx.html