0

アプリをインストールした後、最初に免責事項が表示されるようにしてください。そのために、MainActivity で 2 つのボタンを作成しました。最初の「同意する」ボタンは、ブール値の「true」値を共有設定に保存し、Welcome.class で u にリダイレクトします。2 番目のボタンはアプリを終了します。この条件は、アプリをインストールした後に初めて来るはずです! 私は自分の間違いを見つけることができません!?!

MainActivity.java コード:

    public class MainActivity extends Activity implements OnClickListener    
    {public static String filename = "MySharedString";
SharedPreferences settings;
Button agree,disagree;
public static final String PREFS_NAME = "MyPrefsFile";

@Override
protected void onCreate(Bundle state)
{
    super.onCreate(state);  
    setContentView(R.layout.activity_main);
    TextView text1=(TextView)findViewById(R.id.txt1);
    TextView text2 = (TextView)findViewById(R.id.txt2);
    text2.setText("Android custom dialog example!");
    ImageView image = (ImageView)findViewById(R.id.imageView1);
    image.setImageResource(R.drawable.ic_launcher);
    Button agreeButton = (Button)findViewById(R.id.button1);
    Button disagreeButton = (Button)findViewById(R.id.button2);
    agreeButton.setOnClickListener(this);
    disagreeButton.setOnClickListener(this);
    settings = getSharedPreferences(filename, 0);
}

@Override
public void onClick(View v)
{
    switch (v.getId())
    {
    case R.id.button1:
        SharedPreferences settings = getSharedPreferences(filename, 0);
        boolean agreement = settings.getBoolean("agreement",false);

        SharedPreferences.Editor editor = settings.edit();
        editor.putBoolean("agreement", true);
        editor.commit();

        Intent i=new Intent(getApplicationContext(),Welcome.class);
                    startActivity(i);
        break;

         case R.id.button2:
             finish();
             System.exit(0);
         }
     }
}

activity_main.xml コード:

   <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#d3d3d3"
tools:context=".MainActivity" >

<TextView
    android:id="@+id/txt1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Disclaimer" 
    android:gravity="center"
    android:textSize="20dp"
    android:layout_marginTop="5dp"/>

 <TextView
    android:id="@+id/txt2"
    android:layout_width="fill_parent"
    android:layout_height="50dp"
    android:text="This is a Disclaimer."
    android:textSize="10dp"
    android:layout_marginTop="10dp"
    android:layout_below="@+id/txt1"/>

 <Button
    android:id="@+id/button2"
    android:layout_width="100dp"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@+id/button1"
    android:layout_alignBottom="@+id/button1"
    android:layout_marginLeft="37dp"
    android:layout_toRightOf="@+id/button1"
    android:text="DisAgree" />

 <Button
    android:id="@+id/button1"
    android:layout_width="100dp"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/txt2"
    android:layout_marginLeft="46dp"
    android:text="Agree" />

 <ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignTop="@+id/txt1"
    android:layout_marginLeft="28dp"
    android:src="@drawable/ic_launcher" />

</RelativeLayout>

Welcome.java コード:

    public class Welcome extends Activity
    {
      @Override
     protected void onCreate(Bundle savedInstanceState) 
     {
         super.onCreate(savedInstanceState);
                 setContentView(R.layout.welcome);
             TextView iv = (TextView)findViewById(R.id.textView1);

     }
}

歓迎.xml

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

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="WELCOME !"
    android:textAppearance="?android:attr/textAppearanceLarge" />

AndroidManifest.xml コードは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.disclaimer1"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.disclaimer1.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
     <activity android:name="com.example.disclaimer1.Welcome"></activity>
</application>

</manifest>

ログキャット:

10-13 07:23:30.069: E/AndroidRuntime(3356): 致命的な例外: メイン 10-13 07:23:30.069: E/AndroidRuntime(3356): android.content.ActivityNotFoundException: 明示的なアクティビティ クラスが見つかりません {com .example.disclaimer1/com.example.disclaimer1.Welcome}; AndroidManifest.xml でこのアクティビティを宣言しましたか? 10-13 07:23:30.069: E/AndroidRuntime(3356): android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1628) 10-13 07:23:30.069: E/AndroidRuntime(3356): Android. app.Instrumentation.execStartActivity(Instrumentation.java:1424) 10-13 07:23:30.069: E/AndroidRuntime(3356): android.app.Activity.startActivityForResult(Activity.java:3390) 10-13 07:23: 30.069: E/AndroidRuntime(3356): android.app.Activity.startActivityForResult(Activity.java:3351) 10-13 07:23:30.069: E/AndroidRuntime(3356): Android で。

4

3 に答える 3

1

AndroidManifest.xmlファイルでWelcomeアクティビティを宣言していることを確認してください。

最終回答

わかりました、これはこれを行うための最もエレガントな方法ではありませんが、始めましょう。その後、長いテキストを含む Ok/Cancel ダイアログを調査し、2 つのアクティビティを使用するのではなく、そのうちの 1 つを使用することをお勧めします。

主な活動

public class MainActivity extends Activity implements OnClickListener 
{ 
    public static String filename = "MySharedString"; 
    public static final String PREFS_NAME = "MyPrefsFile"; 

@Override 
protected void onCreate(Bundle state) 
{ 
    super.onCreate(state); 
    setContentView(R.layout.main); 

    TextView text1=(TextView)findViewById(R.id.txt1); 
    TextView text2 = (TextView)findViewById(R.id.txt2);
    text2.setText("Android custom dialog example!"); 

    ImageView image = (ImageView)findViewById(R.id.imageView1);
    image.setImageResource(R.drawable.ic_launcher); 

    Button agreeButton = (Button)findViewById(R.id.button1);
    Button disagreeButton = (Button)findViewById(R.id.button2);

    agreeButton.setOnClickListener(this);
    disagreeButton.setOnClickListener(this); 

    boolean agree = getSharedPreferences(filename, 0).getBoolean("agreement", false);
    if(agree)
    {
        openWelcome();
    }           
}

@Override 
public void onClick(View v) 
{ 
    switch (v.getId()) 
    { 
        case R.id.button1: 
            SharedPreferences settings = getSharedPreferences(filename, 0);             
            SharedPreferences.Editor editor = settings.edit(); 

            editor.putBoolean("agreement", true); 
            editor.commit();        

            openWelcome();

            break; 

        case R.id.button2: 
            finish(); 
    }
}

private void openWelcome()
{
    Intent i=new Intent(this, Welcome.class);
    startActivity(i);

    finish();
    }
}
于 2013-10-13T09:59:48.243 に答える
0

最初に `Sharedpreference の値を設定する必要があり、その後でのみアクセスできるようになります。

以下のようにしてみてください:

 switch (v.getId())
    { 
    case R.id.button1:
        //Add the value in Sharepreference
        SharedPreferences.Editor editor = settings.edit();
        editor.putBoolean("agreement", true);
        editor.commit();

          //Get the value from it. 
          SharedPreferences settings = getSharedPreferences(filename, 0);
        boolean agreement = settings.getBoolean("agreement",false);

        Intent i=new Intent(getApplicationContext(),Welcome.class);
                    startActivity(i);
        break;
     }
于 2013-10-13T10:57:29.370 に答える