我一直在研究一个由Redlaser的扫描仪库构建的条形码扫描仪应用程序,我正在尝试在扫描仪覆盖图上实现一个按钮来切换相机的方向。我一直在这个问题很多时间,但我仍然找不到任何解决方案。下面列出了我尝试但尚未成功运行的解决方案。也许有人可以改进它们或提出不同的东西。
1.Rotate UI - >保持方向不变,只需旋转按钮即可。 不可接受:轮播无法用于Android 2.3,且该应用需要与2.3兼容。
2.使用android:configChanges="keyboardHidden|orientation|screenSize"
和setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
更改方向。 不功能:这会旋转视图,但图像会失真,当我将手机向上移动时,相机会向左移动。
3.使用解决方案2 camera.setDisplayOrientation(90);
。不可能 camera
对象位于RedLaser库代码中,我无法访问它。也就是说,在我的ScannerActivity.java中,我没有任何Camera对象。所以我不知道如何引用正在使用的那个。
4.使用setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
不确定:似乎有效,但这会重新启动活动,我需要保留数据。我熟悉this article,但我还没有找到一个好方法来使用它。我希望保存活动中包含一些ArrayList<BarcodeResult>
的所有数据。
有什么想法吗?
答案 0 :(得分:1)
好的,我知道了!我的下午有这个好主意:
5.在布局xml中复制粘贴整个UI并使用原始的纵向和新的横向:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:id="@+id/preview_frame_overlay"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerInParent="true"
android:orientation="vertical"
android:visibility="visible" >
<!-- here is the rest of the portait layout code -->
</LinearLayout>
<LinearLayout
android:id="@+id/preview_frame_overlay2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerInParent="true"
android:orientation="vertical"
android:rotation="90"
android:visibility="gone" >
<!-- here is the rest of the landscape layout code -->
</LinearLayout>
当然你应该使用android:configChanges="keyboardHidden|orientation|screenSize"
在您的扫描活动中,您应该根据方向更改可见和可用的按钮:
//in onCreate
if (!ProductionActivity.settingLandscape) // if landscape set to portait
{
portraitView.setVisibility(View.VISIBLE);
landscapeView.setVisibility(View.GONE);
findViewById(R.id.view_finder).setVisibility(View.VISIBLE);
findViewById(R.id.view_finder2).setVisibility(View.GONE);
ChangeToLandscape(false);
} else
{
portraitView.setVisibility(View.GONE);
landscapeView.setVisibility(View.VISIBLE);
findViewById(R.id.view_finder).setVisibility(View.GONE);
findViewById(R.id.view_finder2).setVisibility(View.VISIBLE);
ChangeToLandscape(true);
android.view.ViewGroup.LayoutParams params1 = landscapeView.getLayoutParams(); //used to resize screen
params1.height = mDisplay.getWidth();
landscapeView.setLayoutParams(params1);
}
我们更新按钮引用和委托的ChangeToLandscape
方法:
private void ChangeToLandscape(boolean landscape)
{
if (landscape)
{
hintTextView = (TextView) findViewById(R.id.hint_text2);
foundTextView = (TextView) findViewById(R.id.num_found_text2);
tvLastBarcode = (TextView) findViewById(R.id.tv_lastBarcode2);
doneButton = (Button) findViewById(R.id.button_done2);
bMultiscan = (Button) findViewById(R.id.bMultiscan2);
toggleTorchButton = (Button) findViewById(R.id.button_toggle_torch2);
toggleLineButton = (Button) findViewById(R.id.button_toggle_line2);
bRotate = (Button) findViewById(R.id.bRotate2);
viewfinderView = findViewById(R.id.view_finder2);
} else
{
hintTextView = (TextView) findViewById(R.id.hint_text);
foundTextView = (TextView) findViewById(R.id.num_found_text);
tvLastBarcode = (TextView) findViewById(R.id.tv_lastBarcode);
doneButton = (Button) findViewById(R.id.button_done);
bMultiscan = (Button) findViewById(R.id.bMultiscan);
toggleTorchButton = (Button) findViewById(R.id.button_toggle_torch);
toggleLineButton = (Button) findViewById(R.id.button_toggle_line);
bRotate = (Button) findViewById(R.id.bRotate);
viewfinderView = findViewById(R.id.view_finder);
}
//and then we re-assign the buttons delegates
doneButton.setOnClickListener(new OnClickListener()
{
public void onClick(View v)
{
doneScanning();
}
}); //....etc
}
使用这个想法,活动永远不会重新启动,因此我的数据会被保留,并且效果很好。