This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Pinch zoom | |
public class MainActivity extends AppCompatActivity { | |
private ScaleGestureDetector mScaleGestureDetector; | |
private float mScaleFactor = 1.0f; | |
private ImageView mImageView; | |
@Override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Fuente del texto --> | |
<TextView | |
android:id="@+id/helloworld" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="Hello World!" | |
android:textSize="50dp"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--WEB--> | |
<!--Atributo alt--> | |
<div id="app"> | |
<img src="nombreimagen" alt="Foto en el campo" width="500" height="500"/> | |
</div> | |
<!--aria-label--> | |
<button aria-label="Close" onclick="myDialog.close()">X</button> |