Created
February 10, 2020 09:06
-
-
Save pennya/62f902b4f5ff1d7bad468722ebc12468 to your computer and use it in GitHub Desktop.
(마진)텍스트 Full... 텍스트(마진) 처리
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
xmlns:app="http://schemas.android.com/apk/res-auto"> | |
<TextView | |
android:id="@+id/tv1" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
app:layout_constraintTop_toTopOf="parent" | |
app:layout_constraintBottom_toBottomOf="parent" | |
app:layout_constraintLeft_toLeftOf="parent" | |
app:layout_constraintRight_toLeftOf="@+id/tv2" | |
app:layout_constrainedWidth="true" | |
app:layout_constraintHorizontal_chainStyle="packed" | |
android:layout_marginLeft="16dp" | |
android:maxLines="1" | |
android:ellipsize="end" | |
android:text="왕갈비왕갈비왕갈비왕갈비왕갈비왕갈비왕갈비왕갈비왕갈비왕갈비왕갈비왕갈비왕갈비왕갈비왕갈비왕갈비왕갈비왕갈비왕갈비왕갈비왕갈비왕갈비왕갈비"/> | |
<TextView | |
android:id="@+id/tv2" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
app:layout_constraintTop_toTopOf="parent" | |
app:layout_constraintBottom_toBottomOf="parent" | |
app:layout_constraintLeft_toRightOf="@+id/tv1" | |
app:layout_constraintRight_toRightOf="parent" | |
android:layout_marginLeft="4dp" | |
android:layout_marginRight="16dp" | |
android:text="검색결과"/> | |
</androidx.constraintlayout.widget.ConstraintLayout> |
Author
pennya
commented
Feb 10, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment