1

私の PreferenceActivity では、「About」ボタンを追加しました。押すと、次の関数が呼び出されます。

public void InstructionsDialog(){
  AlertDialog.Builder ad = new AlertDialog.Builder(this);
  ad.setIcon(R.drawable.icon);
  ad.setTitle("About");
  ad.setView(LayoutInflater.from(this).inflate(R.layout.about_dialog,null));

  ad.setPositiveButton("OK", 
    new android.content.DialogInterface.OnClickListener() {
     public void onClick(DialogInterface dialog, int arg1) {
      // OK, go back to Main menu
     }
    }
   );

   ad.setOnCancelListener(new DialogInterface.OnCancelListener(){
     public void onCancel(DialogInterface dialog) {
      // OK, go back to Main menu   
     }
    }
   );

  ad.show();
 }

レイアウトは次のようになります。

<LinearLayout
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:scrollbars="vertical" 
    android:scrollbarAlwaysDrawVerticalTrack="true"
    android:id="@+id/instructions_view" >

<TextView   android:id="@+id/TextView01" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" 
                android:paddingLeft="5px">
                </TextView>
<TextView   android:id="@+id/TextView02" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" 
                android:paddingLeft="5px"
                android:paddingTop="20px"
                android:text=
                "Thank you for downloading this application. Bug reports and request for additional features or languages are welcome.">
                </TextView>                
<TextView   android:id="@+id/TextView03" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" 
                android:paddingLeft="5px"
                android:paddingTop="20px"
                android:text=
                "This project makes use of the 'Android Wheel' created by Yuri Kankan and is licensed under the Apache License (http://www.apache.org/licenses/LICENSE-2.0.html)">
                </TextView>
<TextView   android:id="@+id/TextView04" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" 
                android:paddingLeft="5px"
                android:paddingTop="20px"
                android:layout_gravity="center"
                android:text="Copyright © 2011, Tricky-Design" 
                ></TextView>

</LinearLayout>
</ScrollView>!

画面について

これは良いことですが、このダイアログのリンクがハイパー リンクであることを望みます。linkify の使用について読んだことがありますが、これは FC になります。

誰かが私を助けてくれることを願っています。

どうもありがとう!

4

1 に答える 1

3

これを可能にするために私が行ったことは次のとおりです。

次の例を使用してカスタム ダイアログを作成しました: http://www.androidpeople.com/android-custom-dialog-example

私の好みのActivityで私が作成した:

public void aboutScreen() {
    about about = new about(this);
    about.show();
}

このカスタム ダイアログ内では、linkify を使用してリンクをクリックできるようにするなど、好きなことを行うことができます。

于 2011-05-22T17:17:22.020 に答える