您知道在离线运行android应用程序时将SVG(矢量图像)转换为JPG/JPEG/PNG (任何光栅格式)的方法吗?
主页
/
user-369536
igo's questions
你能破译这个吗:
ТАЛИЦ ДЬЫЛР ЫНИЦД УЗАЖЧ ВЙЖЙН ЙАЙКЖ АТЧАВ ЫОИЦЭ ИЙЮОЯ ЪФГДК АЭОТА ДМНЛО ИЙДНЦ ВЫТАЗ ВЫЖАН ЫАУЧЭ БГЖЧА ТАЖЙЭ АТЧАГ ЕЫЕЬО ЯНЙНЙ МЕОАУ ЧМЙЗИ ЙДВЫЙ ЕИЙЗМ ЭАНГВ ИЙДКЙ ЯЙЕЙИ ИГЕГЪ ЛЕГЬА ВЗЪНА БИЦГБ ЫЛЕГК ЙМЖАЯ ИГАЯИ ГКЙЖА НЫДКЙ ЮОЯГГ ЭВЫМЙ РУАДН ЫНЫЛЕ АИЫКЙ ЯОУАТ ЕАЕЛЫ МИЙДО МИГИА ЯЫИЙН АЬАВИ ЫНЧТА ЖЙЭАТ АМЕЙД ЯОЗЦТ НЙЯЫЭ ИЙЙКО МНАЖГ КЙЖЪТ НЙОБМ ЕЙЛЙЭ ЬОЛЧЪ ИМЯОА НЭАНА ЛОЮЛЩ ЗЦДВЙ ЖЙНЙЮ ЙМОРЙ ЮЙУЗА ЖЪ
看起来像凯撒密码
您是否知道通过 xml 标记文件(精确地通过xml,通过 CODE NOT NECESSARY)创建方形(高度 = 宽度)视图的方法。
三个 ImageView 跨越了屏幕的整个宽度。有没有办法通过 xml 标记使它们成为正方形?什么指定为高度,以便它们是方形的或以其他方式?
activity_main.xml
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" //???
android:orientation="horizontal"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<ImageView
android:id="@+id/imageView1"
android:layout_width="0dp"
android:layout_height="wrap_content" //???
android:layout_weight="1"
app:srcCompat="@android:drawable/ic_menu_camera" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="0dp"
android:layout_height="wrap_content" //???
android:layout_weight="1"
app:srcCompat="@android:drawable/ic_menu_camera" />
<ImageView
android:id="@+id/imageView3"
android:layout_width="0dp"
android:layout_height="wrap_content" //???
android:layout_weight="1"
app:srcCompat="@android:drawable/ic_menu_camera" />
</LinearLayout>