
android
道亦无名
王阳明曰: 立志 勤学 改过 择善
我曰: flag practice debug release
展开
-
android 播放器的初探
android源码android的源码很庞大,只是初步的了解。如何查找相关的代码看看android下面的框架 很想吧android下面的播放器移植到linux下面。 据说需要使用android ndk工具才可以。很多不会用,只能先了解大致的框架,希望会的大神能够 一起讨论讨论。原创 2017-03-18 21:05:30 · 2511 阅读 · 0 评论 -
undefined reference to `property_get'的处理
编译的时候出现undefined reference to `property_get’ 查到相关的函数定义 int property_get(const char *key, char *value, const char *default_value) { int len;len = __system_property_get(key, value);if(len >原创 2017-03-28 10:30:33 · 7106 阅读 · 0 评论 -
Android的页面跳转
Main代码如下:package com.example.jack.myapplication;import android.content.Intent;import android.support.v7.app.AppCompatActivity;import android.os.Bundle;import android.view.View;import android...原创 2018-07-20 09:51:42 · 2224 阅读 · 0 评论 -
Androidstudio中界面设计无法拖动问题解决方法
在Androidstudio中进行接拖动无法响应:使用如下办法即可解决:加入如下部分代码:<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">这样就好了...原创 2019-01-10 12:23:59 · 10503 阅读 · 4 评论