这是我第一次使用stackoverflow。
我不是母语为英语的人,所以如果你对我的语法感到怪异,请纠正我,谢谢。
我的问题:
https://drive.google.com/file/d/0B2jE5mgB1K4TVUlPRkV6Z18xaUE/edit?usp=sharing
(还没有足够的声誉来发布图片)
请参阅上面的截图,微调器列出了我手机的网络接口,现在他们的名字和IP地址没有对齐。
这是我的微调器行'布局
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp" >
<TextView
android:id="@+id/interface_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"/>
<TextView
android:id="@+id/interface_addr"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"/>
</LinearLayout>
我正在尝试自动调整@+id/interface_name
的宽度,就像TableLayout
和TableRow
一样,我尝试将LinearLayout
替换为TableRow
但没有运气。
也许我必须修正@+id/interface_name
的宽度?
感谢您的建议,如果您需要其他信息,请告诉我,我会更新。