मैं एक लेआउट में किसी आइटम के संबंध में किसी लेआउट में किसी आइटम को संरेखित करने का तरीका जानने का प्रयास कर रहा हूं।
यहाँ एक दृश्य प्रतिनिधित्व है: layout_below आइटम के अंदर लेआउट
और यहाँ उदाहरण कोड है कि मैं के लिए देख रहा हूँ (जो स्पष्ट रूप से काम नहीं करता है) है:
Main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<include
android:id="@+id/info"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
layout="@layout/info" />
//This would be the dark grey box
<RelativeLayout
android:layout_below="@id/item1">
</RelativeLayout>
</RelativeLayout>
शामिल.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="50dp">
<ImageView
android:id="@+id/item1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:paddingLeft="100dp"/>
</RelativeLayout>
मैं सबसे अच्छा तरीका यह है, गतिशील रूप से कोड में स्थिति अंधेरे ग्रे बॉक्स के माध्यम से किया जाएगा संभालने हूँ, लेकिन मैं जहां शुरू करने के लिए पता नहीं है। कोई भी सहायता कमाल की होगी।
आप जो भी चाहते हैं वह करने में सक्षम नहीं होंगे (और मेरे दृष्टिकोण से आप इसे नहीं करना चाहते हैं)। कोड में उस अतिरिक्त विंडो को जोड़ने पर देखो। – Luksprog
तो इस समाधान ने मेरे लिए काम किया https://stackoverflow.com/a/45450305/563735 –
तो इस समाधान ने मेरे लिए काम किया है। https://stackoverflow.com/a/45450305/563735 –