-Add the new buttons push animation to the buttons in the baclup_seed.xml and java source

-Test the code so it works as before after changes
-Change the text from cancel to CLOSE in the BackUpSeedActivity
feat_androidx_migration
dtvv 2018-10-12 14:47:12 -05:00
parent d3a55fae02
commit f705de8c60
2 changed files with 36 additions and 9 deletions

View File

@ -15,6 +15,8 @@ import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
import com.thekhaeng.pushdownanim.PushDownAnim;
import butterknife.BindView;
import butterknife.ButterKnife;
import butterknife.OnClick;
@ -30,11 +32,12 @@ public class BackupSeedActivity extends AppCompatActivity {
@BindView(R.id.tvBrainKey)
TextView textfieldBrainkey;
@BindView(R.id.btnCancel)
@BindView(R.id.btnOK)
Button btnOk;
@BindView(R.id.btnCopy)
Button btnCopy;
@BindView(R.id.btnCancel)
Button btnCancel;
@Override
protected void onCreate(Bundle savedInstanceState) {
@ -43,6 +46,30 @@ public class BackupSeedActivity extends AppCompatActivity {
ButterKnife.bind(this);
/*
* Integration of library with button efects
* */
PushDownAnim.setPushDownAnimTo(btnCancel)
.setOnClickListener( new View.OnClickListener(){
@Override
public void onClick( View view ){
btnCancelClick();
}
} );
PushDownAnim.setPushDownAnimTo(btnOk)
.setOnClickListener( new View.OnClickListener(){
@Override
public void onClick( View view ){
btnOkClick();
}
} );
PushDownAnim.setPushDownAnimTo(btnCopy)
.setOnClickListener( new View.OnClickListener(){
@Override
public void onClick( View view ){
btnCopyClick();
}
} );
/*
* If comes from new account creation hide the cancel button
* */

View File

@ -68,9 +68,9 @@
android:layout_marginLeft="20dp"
android:layout_marginTop="35dp"
android:layout_toLeftOf="@+id/btnCopy"
android:background="?android:attr/selectableItemBackground"
android:text="@string/cancel"
android:textColor="#0099ff" />
android:theme="@style/BlueButton"
android:text="@string/close"
android:textColor="@color/white" />
<Button
android:id="@+id/btnCopy"
@ -80,8 +80,8 @@
android:layout_below="@+id/backup_seed_textview_leyend_backup"
android:layout_marginTop="35dp"
android:text="@string/window_seed_copy"
android:textColor="#0099ff"
android:background="?android:attr/selectableItemBackground"/>
android:textColor="@color/white"
android:theme="@style/BlueButton"/>
<Button
android:id="@+id/btnOK"
@ -91,8 +91,8 @@
android:layout_below="@+id/backup_seed_textview_leyend_backup"
android:layout_marginTop="35dp"
android:text="@string/ok"
android:textColor="#0099ff"
android:background="?android:attr/selectableItemBackground"/>
android:textColor="@color/white"
android:theme="@style/BlueButton"/>
</RelativeLayout>