我有一个用于纵向模式下列表项的布局文件。这样可以很好地适合屏幕,并保持相同的图像尺寸并保持宽高比:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="fitCenter" />
</LinearLayout>
...
</RelativeLayout>
然后,对于横向版本,我有一个非常相似的文件,只是我使用权重,以便图像占据屏幕宽度的一半(目的是生成类似大小的正方形图像)。旁边有一个相对布局,权重也为1。这两个屏幕现在不应该占据屏幕的一半吗?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="fitCenter">
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
<RelativeLayout
android:layout_toRightOf="@+id/image"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_width="0dp">
...
</RelativeLayout>
</RelativeLayout>
相反,我看不到图像或文本。我在这里做错了什么?
更新这是我的活动代码:
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new CardFragment())
.commit();
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
if (id == R.id.action_refresh) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
更新2
在这里设置imageView的资源
public class BitmapDisplayer implements Runnable
{
Bitmap bitmap;
CakeImageToLoad imageToLoad;
public BitmapDisplayer(Bitmap b, CakeImageToLoad p){bitmap=b;imageToLoad=p;}
public void run()
{
if(imageViewReused(imageToLoad))
return;
if(bitmap!=null)
imageToLoad.imageView.setImageBitmap(bitmap);
}
}
private static Bitmap convertToBitmap(byte[] data) {
return BitmapFactory.decodeByteArray(data, 0, data.length);
}
答案 0 :(得分:0)
<LinearLayout
android:orientation="vertical"
android:layout_width="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="fitCenter">
...
您有2个layout_width,我想其中之一应该是重量。
我认为相对布局要占据一半的卵石,其宽度也应该为0,权重为1