答えて
このような何か:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Apellidos"/>
<EditText
android:id="@+id/editText"
android:layout_toRightOf="@+id/text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hind="Apellidos"/>
<LinearLayout
android:layout_below="@+id/editText"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_weight="1"
android:layout_marginRight="20dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/text2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="Ciudad"/>
<EditText
android:layout_toRightOf="@+id/text2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hind="Apellidos"/>
</RelativeLayout>
<RelativeLayout
android:layout_marginLeft="20dp"
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/text3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="Ciudad"/>
<EditText
android:layout_toRightOf="@+id/text3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hind="Apellidos"/>
</RelativeLayout>
</LinearLayout>
</RelativeLayout>
編集:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/name"
android:orientation="vertical"
android:gravity="right"
android:layout_width="wrap_content"
android:layout_height="match_parent">
<TextView
android:id="@+id/text"
android:padding="10dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Apellidos"/>
<TextView
android:id="@+id/text1"
android:padding="10dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Apelli"/>
</LinearLayout>
<LinearLayout
android:id="@+id/value"
android:orientation="vertical"
android:layout_toRightOf="@+id/name"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/text"
android:hind="Apellidos" />
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:layout_weight="2"
android:layout_toRightOf="@+id/text2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:hind="Apellidos"/>
<TextView
android:layout_marginLeft="10dp"
android:layout_weight="1"
android:id="@+id/text2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Ciudad"/>
<EditText
android:layout_weight="2"
android:layout_toRightOf="@+id/text2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hind="xyz"/>
</LinearLayout>
</LinearLayout>
それは考えですが、コンポーネントが整列していません –
あなたは左側のtextviewsが整列していないことを意味しますか?はいの場合は、スペースにテキストを追加して、すべて同じ長さにする必要があります – khetanrajesh
そうです。私はそれを試して、それが働いたが、私は国際化が行われるときに心配する –
あなたはRelativeLayoutを使用して、これを実装することができますが、それはあなたが指定できますConstraintLayoutを使用するための理想的な候補であります要素の相対的な位置と、タブレットまたはマルチウィンドウモードでウィンドウのサイズが変更されるときに、どのように展開/再配置する必要があるかを示します。
- 1. スピナーAndroidのようなドロップダウンリストをXamarinフォームで作成するにはどうすればいいですか?
- 2. Androidでカスタムコンテナビューを作成するにはどうすればよいですか?
- 3. Androidでカスタムコントロールを作成するにはどうすればよいですか?
- 4. Androidでアンバウンドサービスを作成するにはどうすればよいですか?
- 5. AndroidでCanvasを作成するにはどうすればよいですか?
- 6. Firebaseフォームを作成するにはどうすればよいですか?
- 7. どうすればこのようなフォームを作成できますか?
- 8. Xamarinフォーム(Android、iOS)でVoice Recoderを作成するにはどうすればよいですか?
- 9. Androidスタジオ - カードビューを作成するにはどうすればよいですか?
- 10. Android - スライドショーを作成するにはどうすればよいですか?
- 11. GUIをプログラムで作成し、Windowsフォーム用に作成するにはどうすればよいですか?
- 12. このJOINを作成するにはどうすればよいですか?
- 13. Androidでこのタイプのビューを作成するにはどうすればよいですか?
- 14. Androidアプリでこのタイプのアクティビティレイアウトを作成するにはどうすればよいですか?
- 15. HTMLテーブル:このフォームのテーブルを作成するにはどうすればよいですか?
- 16. Elasticsearchでこのクエリを作成するにはどうすればよいですか?このような
- 17. このカスタムビューをAndroidで作成するにはどうすればよいですか?
- 18. Android:コードでこのリソースシェイプを作成するにはどうすればよいですか?
- 19. HTML JavaScriptこのフォームを作成するにはどうすればよいですか?
- 20. この簡単な検索フォームを作成するにはどうすればよいですか?
- 21. Android Studioでプロジェクトエクスプローラから新しいAndroidアクティビティを作成するにはどうすればよいですか?
- 22. メトロUI C#:フォーム内でフォームを作成するにはどうすればよいですか?
- 23. Androidでこのようなアンケートフォームを達成するにはどうすればよいでしょうか?
- 24. AndroidウェブアプリでJQueryスライダーのような機能を作成するにはどうすればよいですか?
- 25. ウェブサービスアプリの作成にはどうすればよいですか?
- 26. androidを作成するにはどうすればいいですか?
- 27. Androidライブラリを作成するにはどうすればいいですか
- 28. Android - Androidで六角形を作成し、アニメーションで回転するにはどうすればよいですか?
- 29. Android - iphoneで削除のようなシェイクエフェクトを作成するにはどうすればいいですか?
- 30. Androidで棚のようなビューを作成するにはどうすればいいですか?
これまでに行ったことを投稿する必要があります。助けが簡単です。 – davidxxx
申し訳ありませんStackoverflowは、画像をアップロードするには少なくとも10ポイントが必要だと言います。私は現在6です。 –