作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我试图检测我的应用程序何时在圆形 Wear 设备上运行,但我无法通过此 post 使 OnApplyWindowInsetsListener 工作.
我可以将其附加到我的布局中的任何 View 对象,还是我的布局本身?什么时候调用?我无法让听众开火。任何代码示例将不胜感激。
我在我的 OnResume 方法中创建并添加这个 ImageView 到我的主布局:
backgroundImage = new ImageView(this);
backgroundImage.setOnApplyWindowInsetsListener(new View.OnApplyWindowInsetsListener() {
@Override
public WindowInsets onApplyWindowInsets(View view, WindowInsets windowInsets) {
if (windowInsets.isRound()){
Log.d("DEVELOPER", "......screen is round");
}
Log.d("DEVELOPER", "......windowinsets called");
return null;
}
});
最佳答案
根据我的经验,并非所有 View 都会调用此监听器。
使用 WatchViewStub
您可以轻松获得它:
WatchViewStub stub = (WatchViewStub) findViewById(R.id.stub);
stub.setOnApplyWindowInsetsListener(new View.OnApplyWindowInsetsListener() {
@Override
public WindowInsets onApplyWindowInsets(View v, WindowInsets insets) {
if(insets.isRound()) {
// Yes device is round
}
return null;
}
});
这里使用的布局:
<android.support.wearable.view.WatchViewStub
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/stub"
app:rectLayout="@layout/rect_layout"
app:roundLayout="@layout/round_layout"/>
关于android - 如何为 Android Wear 使用 setOnApplyWindowInsetsListener,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24746308/
我是一名优秀的程序员,十分优秀!