0

アンドロイド 2.3.3

ZXing ライブラリを使用して単純な URL をエンコードしようとしています。

以下のファイルで URL フィールド (id = edittext_url_link) をエンコードするだけです。

フィールドに入力されたデータ ->URL Title = My Website. URL = http://www.mywebsite.com

XML ファイル :::

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="300dp"
    android:layout_height="wrap_content"
    android:layout_margin="10dp"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/textview_url_header"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Enter URL to Encode:"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp" />

    <TextView
        android:id="@+id/textview_url_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="3dp"
        android:layout_marginTop="20dp"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:text="URL Title" />

    <EditText
        android:id="@+id/edittext_url_title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:ems="10" >
    </EditText>

    <TextView
        android:id="@+id/textview_url_link"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="3dp"
        android:layout_marginTop="20dp"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:text="URL" />

    <EditText
        android:id="@+id/edittext_url_link"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:ems="10" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="3dp"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="20dp"
        android:layout_gravity="center"
        android:gravity="center" >

        <Button
            android:id="@+id/button_url_encode"
            android:layout_width="0dip"
            android:layout_height="60dp"
            android:layout_weight="0.50"
            android:text="Encode"
            android:layout_gravity="center"
            android:gravity="center" />

        <Button
            android:id="@+id/button_url_cancel"
            android:layout_width="0dip"
            android:layout_height="60dp"
            android:layout_weight="0.50"
            android:text="Cancel"
            android:layout_gravity="center"
            android:gravity="center" />
    </LinearLayout>

</LinearLayout>

Java ファイル :::

public class URLEncodeActivity extends Activity implements OnClickListener{

    EditText edtxtURLTitle, edtxtURL;
    Button btnEncode, btnCancel;

    String urlTitle, url;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_url);

        edtxtURLTitle = (EditText) findViewById(R.id.edittext_url_title);
        edtxtURL = (EditText) findViewById(R.id.edittext_url_link);
        btnEncode = (Button) findViewById(R.id.button_url_encode);
        btnCancel = (Button) findViewById(R.id.button_url_cancel);


        urlTitle = edtxtURLTitle.getText().toString();
        url = edtxtURL.getText().toString();

        btnEncode.setOnClickListener(this);
        btnCancel.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        // TODO Auto-generated method stub

        if(v.getId() == R.id.button_url_encode)
        {
            Intent intent = new Intent(Intents.Encode.ACTION);
            intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
            intent.putExtra(Intents.Encode.TYPE, Contents.Type.TEXT);
            intent.putExtra(Intents.Encode.DATA, url);
            intent.putExtra(Intents.Encode.FORMAT, BarcodeFormat.QR_CODE.toString());
            startActivity(intent);

        }
        else
        {

        }

    }

}

しかし、「提供されたデータからバーコードをエンコードできませんでした」というダイアログが表示され続けます。私が間違っているのは何ですか?


[編集]

今後の参考のために、ZXing ライブラリ コードをプロジェクトにインポートすることはお勧めしませんが、私はそれを行い、URL をエンコードするために行った呼び出しを次に示します。

            Intent intent = new Intent(
                    "com.xxx.xx.android.ENCODE");
            String data = edtxtURL.getText().toString();
            intent.putExtra(Const.FROM_ACTIVITY, "URL");
            intent.putExtra("ENCODE_DATA", data);
            intent.putExtra("ENCODE_TYPE", Contents.Type.TEXT);
            intent.putExtra("ENCODE_FORMAT",
                    BarcodeFormat.QR_CODE.toString());
            startActivity(intent);
4

1 に答える 1