我正在寻找一种在运行时更改主屏幕小部件/远程视图中视图位置的方法。我之前也看过这个话题,但那里给出的答案对我没有帮助,甚至没有工作。
例如:
我正在尝试将 TextView 的 x 位置移动 5 个像素:
myRemoteView.setFloat(R.id.myTextView, "setTranslationX", 5); // does not work
myRemoteView.setFloat(R.id.myTextView, "setX", 5); // does not work
myRemoteView.setInt(R.id.myTextView, "setLeft", 5); // does not work
我在其他地方找不到可以帮助我的有用答案。